/* ====================================
   ZIKA - NOTIFICATIONS
   ==================================== */

.notifications-container {
    padding: 2rem;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-item {
    background: var(--zika-card);
    border: 1px solid var(--zika-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.notification-item:hover {
    border-color: var(--zika-green);
    transform: translateX(4px);
}

.notification-unread {
    background: rgba(0, 255, 0, 0.05);
    border-color: var(--zika-green);
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-message {
    font-size: 0.95rem;
    color: var(--zika-white);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.notification-message.text-green {
    color: var(--zika-green);
    font-weight: 600;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--zika-gray);
}

.notification-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--zika-green);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Section header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--zika-white);
    margin: 0;
}

.section-title i {
    color: var(--zika-green);
}

/* Responsive */
@media (max-width: 768px) {
    .notifications-container {
        padding: 0;
        padding-bottom: 100px;
        max-width: 100vw;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .notifications-list {
        padding: 0.5rem;
    }
    
    .notification-item {
        padding: 1rem;
    }
    
    .notification-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-header .btn {
        width: 100%;
    }
}
