.admin-notification-bar {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    text-align: center; 
    padding: 12px 20px; 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    z-index: 9999; 
    font-weight: 500; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.admin-notification-btn {
    color: #fff; 
    text-decoration: none; 
    background: rgba(255,255,255,0.2); 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.admin-notification-close-btn {
    background: none; 
    border: none; 
    color: white; 
    font-size: 16px; 
    cursor: pointer; 
    padding: 0; 
    margin-left: 10px;
    opacity: 0.7;
}

.admin-notification-toast {
    position: fixed; 
    top: 20px; 
    right: 20px; 
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    padding: 15px 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 350px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}