.eu-presidency {
    width: 100%;
    margin: 0 auto 30px;
}

.eu-presidency h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.eu-presidency > p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.eu-table-wrapper {
    width: calc(100% - 30px);
    max-width: 650px;
    margin: 0 auto;
    overflow-x: auto;
}

.eu-table thead th:nth-child(1),
.eu-table tbody th {
    width: 10%;
}

.eu-table thead th:nth-child(2),
.eu-table td:nth-child(2) {
    width: 45%;
}

.eu-table thead th:nth-child(3),
.eu-table td:nth-child(3) {
    width: 45%;
}

.eu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    line-height: 1.4;
}

.eu-table caption {
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600;
}

.eu-table th,
.eu-table td {
    padding: 10px 14px;
    border: 1px solid #b8b8b8;
    text-align: left;
    vertical-align: middle;
}

.eu-table thead th {
    background-color: #f1f3f5;
    font-weight: 700;
}

.eu-table tbody th {
    width: 90px;
    background-color: #f8f9fa;
    font-weight: 700;
}

.eu-table tbody tr:nth-child(even) td {
    background-color: #fafafa;
}

.eu-table tbody tr:hover td,
.eu-table tbody tr:hover th {
    background-color: #f3f6f9;
}

@media (max-width: 600px) {
    .eu-presidency h2 {
        font-size: 1.3rem;
    }

    .eu-table {
        font-size: 0.95rem;
    }

    .eu-table th,
    .eu-table td {
        padding: 8px 7px;
    }

    .eu-table tbody th {
        width: 60px;
    }

    .eu-table-wrapper {
        width: 100%;
        max-width: 100%;
    }

}