/* Notifications CSS */
/* ============================================================
   NOTIFICATIONS APP STYLES
   ============================================================ */

/* You can add custom notification styles here if needed */
/* All styles are currently in the template itself */

.notification-item {
    transition: background-color 0.2s ease;
}

.notification-item.unread {
    border-left: 4px solid #0d6efd;
    background-color: #f0f7ff;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 300px;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0d6efd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #dee2e6;
}

/* Badge styles */
.badge-unread {
    background-color: #0d6efd;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}