/* Navbar Additional Styles for Notification and Message Icons */

.nav-notifications {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-notifications .nav-icon-btn {
    position: relative;
    transition: all 0.3s ease;
}

.nav-notifications .nav-icon-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.nav-notifications .nav-icon-btn .nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-notifications .nav-icon-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-notifications {
        gap: 4px;
    }
    
    .nav-notifications .nav-icon-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-notifications .nav-icon-btn .nav-badge {
        top: -2px;
        right: -2px;
        min-width: 14px;
        height: 14px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .nav-notifications {
        gap: 2px;
    }
    
    .nav-notifications .nav-icon-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-notifications .nav-icon-btn .nav-badge {
        top: -1px;
        right: -1px;
        min-width: 12px;
        height: 12px;
        font-size: 8px;
    }
}
