#gruposUsuarioInfo {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.grupo-pill-card {
    border-radius: 18px;
    padding: 16px;
    min-height: 120px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grupo-pill-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.grupo-pill-nombre {
    font-size: 16px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

.grupo-pill-actividades {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.grupo-actividad-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,0.65);
    color: #555;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* pastel backgrounds */
.pill-pastel-1 {
    background: #fde2e4;
}

.pill-pastel-2 {
    background: #e2f0cb;
}

.pill-pastel-3 {
    background: #cde7f0;
}

.pill-pastel-4 {
    background: #fff1c1;
}

.pill-pastel-5 {
    background: #e4d9ff;
}

.pill-pastel-6 {
    background: #ffd6c9;
}


.btn-aviso-semana {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 20px;
    border-radius: 16px;
    border: none;

    font-size: 18px;
    font-weight: 700;

    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.4);
    color: #fff;

   
    transition: all 0.25s ease;
}

.btn-aviso-semana:hover {
    transform: translateY(-2px) scale(1.02);
   box-shadow: 0 14px 30px rgba(30, 136, 229, 0.5);
}

.btn-aviso-semana:active {
    transform: scale(0.98);
}

.btn-aviso-semana .icono {
    font-size: 22px;
}

.btn-aviso-semana .texto {
    text-align: center;
}

@keyframes pulseAviso {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 167, 38, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 167, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 167, 38, 0);
    }
}

.btn-aviso-semana {
    animation: pulseAviso 2.5s infinite;
}