/* ============================================
   Pagina /europa — tabelul pe țări
   ============================================
   Restul stilurilor (step-card, note, file-box…) vin din css/instructiuni.css,
   încărcat înaintea acestuia. Aici stă doar ce e specific tabelului. */

.eu-page .intro-section h2 {
    line-height: 1.3;
}

.eu-table-wrap {
    overflow-x: auto;
    margin: 14px 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.eu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 720px;
}

.eu-table thead th {
    background: #f4f8fc;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.eu-table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.45;
}

.eu-table tbody tr:last-child td { border-bottom: 0; }

.eu-table tbody tr:hover { background: #fafcfe; }

.eu-table a {
    color: var(--primary-light);
    font-weight: 600;
    white-space: nowrap;
}

.eu-c-name { min-width: 200px; }

.eu-flag {
    font-size: 1.15rem;
    margin-right: 4px;
}

.eu-note {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
}

.eu-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.eu-badge-ok   { background: #eafaf1; color: #1e8449; border: 1px solid #a9dfbf; }
.eu-badge-warn { background: #fef9e7; color: #7d6608; border: 1px solid #f9e79f; }
.eu-badge-na   { background: #f4f6f7; color: var(--text-light); border: 1px solid var(--border); }

/* Pe ecran mic tabelul rămâne tabel, dar se derulează lateral — e mai lizibil
   decât un card per țară, pentru că oamenii compară coloanele între ele. */
@media (max-width: 700px) {
    .eu-table { font-size: 0.85rem; }
    .eu-table thead th,
    .eu-table td { padding: 9px 10px; }
}
