/* Notification Toast Styles */
.notification-toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 24rem;
    font-family: system-ui, -apple-system, sans-serif;
}

.notification-toast {
    background-color: white;
    color: #333;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slide-in 0.3s ease;
    cursor: pointer;
    border-left: 4px solid #34D399;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 24rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.notification-toast:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.notification-toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.notification-toast-header strong {
    font-weight: 600;
    font-size: 1rem;
}

.close-toast {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #9CA3AF;
    padding: 0.25rem;
    border-radius: 9999px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.close-toast:hover {
    background-color: #F3F4F6;
    color: #374151;
}

.notification-toast-body {
    font-size: 0.875rem;
    color: #6B7280;
}

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

/* Badge Styles */
.notification-badge, 
.message-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #EF4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
}

.notification-badge.hidden,
.message-badge.hidden {
    display: none;
}

/* Notification List Styles */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* max-height: 24rem; */
    /* overflow-y: auto; */
}

.notification-item {
    padding: 1rem;
    border-radius: 0.375rem;
    background-color: white;
    border-left: 4px solid #9CA3AF;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.notification-item.unread {
    border-left-color: #10B981;
    background-color: #F3F9FF;
}

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

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notification-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.notification-message {
    font-size: 0.75rem;
    color: #6B7280;
}

.notification-time {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 0.25rem;
}

.notification-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
} 