/**
 * Priority Opleidingen – frontend stijlen.
 *
 * Bevat stijlen voor:
 *  1. Duplicaatnaams-waarschuwing in het MEC-boekingsformulier.
 *  2. Annuleringsmelding wanneer een opleiding geannuleerd is in Priority.
 */

/* Rood randje rond het naamveld als er een duplicaat is */
.po-name-duplicate,
.po-name-duplicate:focus {
    border-color: #d63638 !important;
    box-shadow: 0 0 0 1px #d63638 !important;
    outline-color: #d63638 !important;
}

/* Waarschuwingstekst onder het naamveld */
.po-duplicate-name-warning {
    display: block;
    color: #d63638;
    font-size: 0.875em;
    font-weight: normal;
    line-height: 1.4;
    margin-top: 4px;
    padding: 0;
}

/* ── Annuleringsmelding ──────────────────────────────────────────────────── */

.po-cancelled-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fef7f7;
    border: 1px solid #f5c6c6;
    border-left: 4px solid #d63638;
    border-radius: 3px;
    color: #3c1a1a;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.5;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.po-cancelled-icon {
    font-size: 1.2em;
    line-height: 1.3;
    color: #d63638;
    flex-shrink: 0;
}
