/* Notification List Page */
.notification-list {
    padding: 20px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    background-color: #fff;
    transition: background-color 0.2s;
}

.notification-item.unread {
    cursor: pointer;
}

.avatar-container {
    margin-right: 15px;
}

.notification-avatar {
    border: 3px solid #e4e4e4;
}

.notification-content {
    flex: 1;
    font-size: 14px;
}

.notification-content strong {
    font-size: 16px;
}

.notification-date {
    color: #888;
    font-size: 13px;
    margin-top: 5px;
}

/* Notification Bell Badge */
.notification-section-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.notification-section {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ff4444;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.notification-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4444;
    border-radius: 50%;
    float: right;
    display: inline;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 15px 20px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.warning {
    border-left-color: #ffc107;
}

.toast-notification .toast-header {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.toast-notification .toast-body {
    font-size: 13px;
    color: #666;
}

.toast-notification .toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

.toast-notification .toast-close:hover {
    color: #333;
}

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

