/**
 * CLUBPRO 2026 - Tabbed Navigation Component
 * Reusable for Community, Profile, Stats, and Contests.
 */

.cp-tabs-wrapper {
    background: rgba(26, 30, 38, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
}

.cp-tabs-wrapper .nav-link {
    color: #a0a6b5;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cp-tabs-wrapper .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.cp-tabs-wrapper .nav-link.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: inset 0 0 0 1px rgba(0, 255, 136, 0.2);
}

/* Responsivo: Solo iconos en móviles */
@media (max-width: 768px) {
    .cp-tabs-wrapper .nav-link span {
        display: none;
    }
    .cp-tabs-wrapper .nav-link i {
        font-size: 1.2rem;
        margin: 0;
    }
}