.content-panel {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 22px 60px rgba(59, 74, 113, 0.16);
    backdrop-filter: blur(10px);
}

.section-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-eyebrow {
    margin: 0 0 8px;
    color: #0f6884;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-toolbar h2 {
    margin: 0;
    color: #142e3b;
    font-size: 30px;
}

.section-note {
    margin: 8px 0 0;
    color: #315768;
    font-size: 15px;
}

.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #54b837;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(55, 119, 39, 0.25);
    transition: 0.2s ease;
}

.primary-action:hover {
    transform: translateY(-1px);
    background: #62c944;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.filter-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 104, 132, 0.28);
    background: rgba(255, 255, 255, 0.45);
    color: #153747;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.filter-button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(15, 104, 132, 0.13);
    color: #0f6884;
    font-size: 13px;
}

.filter-button:hover,
.filter-button.is-active {
    background: #0f6884;
    color: #ffffff;
    transform: translateY(-1px);
}

.filter-button:hover span,
.filter-button.is-active span {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.empty-state {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.38);
    color: #315768;
    font-weight: 800;
    text-align: center;
}

.pagination-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.pagination-row a,
.pagination-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    color: #153747;
    font-weight: 900;
    text-decoration: none;
}

.pagination-row a {
    background: #0f6884;
    color: #ffffff;
}

@media (max-width: 720px) {
    .section-toolbar {
        flex-direction: column;
    }

    .primary-action {
        width: 100%;
    }
}


.directory-search {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.directory-search input {
    flex: 1;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(15, 104, 132, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #153747;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.directory-search input:focus {
    border-color: rgba(15, 104, 132, 0.75);
    box-shadow: 0 0 0 4px rgba(15, 104, 132, 0.12);
}

.directory-search button,
.reset-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #0f6884;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(9, 65, 83, 0.18);
}

.reset-link {
    background: rgba(47, 69, 126, 0.78);
}

@media (max-width: 820px) {
    .directory-search {
        flex-direction: column;
    }
}