.card-modern {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
}

.card-content {
    color: #475569;
    line-height: 1.7;
}

.btn-modern {
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    transition: 0.3s;
    display: inline-block;
}

.btn-modern:hover {
    opacity: 0.92;
    transform: scale(1.02);
}

.pagination-btn {
    padding: 8px 14px;
    border-radius: 10px;
    background: white;
    border: 1px solid #dbeafe;
    transition: 0.2s;
}

.pagination-btn:hover {
    background: #2563eb;
    color: white;
}

.pagination-active {
    background: #2563eb;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.25s ease;
}

#modalContent::-webkit-scrollbar,
.flex-1::-webkit-scrollbar {
    width: 8px;
}

#modalContent::-webkit-scrollbar-thumb,
.flex-1::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

#modalContent::-webkit-scrollbar-track,
.flex-1::-webkit-scrollbar-track {
    background: #f1f5f9;
}

/* Modal Scroll */

#detailModal .overflow-y-auto::-webkit-scrollbar {
    width: 8px;
}

#detailModal .overflow-y-auto::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

#detailModal .overflow-y-auto::-webkit-scrollbar-track {
    background: #f8fafc;
}

/* Modal Scrollbar */

#detailModal div::-webkit-scrollbar {
    width: 8px;
}

#detailModal div::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

#detailModal div::-webkit-scrollbar-track {
    background: #f1f5f9;
}

/*
|--------------------------------------------------------------------------
| SECTION TITLE
|--------------------------------------------------------------------------
*/

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;
}

.section-icon {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(37, 99, 235, 0.08);

    color: #2563eb;

    font-size: 20px;

    backdrop-filter: blur(4px);

    transition: all 0.3s ease;
}


   

.section-title-modern {

    font-size: 1.6rem !important;

    font-weight: 800 !important;

    color: #0f172a !important;

    line-height: 1.2;
}

.section-subtitle {

    font-size: 0.9rem !important;

    color: #64748b !important;

    margin-top: 2px;
}

/*
|--------------------------------------------------------------------------
| ANNOUNCEMENT PANEL
|--------------------------------------------------------------------------
*/

.announcement-panel {

    background:
        linear-gradient(
            180deg,
            #eff6ff,
            #ffffff
        );

    border: 1px solid #dbeafe;

    border-radius: 24px;

    padding: 24px;

    box-shadow:
        0 10px 30px rgba(59, 130, 246, 0.08);
}