.header {
    background-color: var(--color-primary);
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.header-logo {
    max-width: 180px;
    height: auto;
}

.notif-dropdown {
    min-width: 320px !important;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.notif-header {
    background: linear-gradient(135deg, #193e6b 0%, #2d5a96 100%);
    color: white;
    padding: 16px !important;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 14px;
}

.notif-item {
    padding: 12px 16px !important;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notif-item:hover {
    background-color: #f8f9fa;
    padding-left: 20px !important;
}

.notif-item:last-of-type {
    border-bottom: none;
}

.notif-title {
    font-weight: 600;
    color: #193e6b;
    font-size: 13px;
    margin-bottom: 4px;
}

.notif-desc {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.notif-time {
    font-size: 11px;
    color: #adb5bd;
    text-align: right;
}

.notif-badge {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px !important;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.notif-footer {
    padding: 12px 16px !important;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

.notif-footer a {
    color: #193e6b !important;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notif-footer a:hover {
    color: #b3a125 !important;
}

.notif-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: #756b19; /* Slightly darker shade of #b3a125 */
    border-color: #8b7d1a;
}