/* ===== Panel de Usuario ===== */
#userPanel {
    padding: 40px 0;
    background: #f8f9fa;
    /* fondo suave para diferenciar */
}

/* Sidebar izquierda */
#userPanel .list-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

#userPanel .list-group-item {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    border: none;
    transition: all 0.3s ease-in-out;
}

#userPanel .list-group-item i {
    margin-right: 8px;
}

#userPanel .list-group-item:hover {
    background-color: #73ad21;
    color: #fff;
}

#userPanel .list-group-item.active {
    background-color: #73ad21;
    border: none;
    color: #fff;
    font-weight: 600;
}

/* Contenido derecho */
#userPanel .content-panel {
    min-height: 500px;
    margin-left: 10px;
    max-width: 95%;
    /* hace que no se vea tan ancho */
}

#userPanel .content-panel h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

#userPanel .content-panel p {
    color: #666;
    font-size: 15px;
}

/* Historial de compras */
#userPanel #compras h5 {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 600;
}

.list-group.mb-3 {
    margin-top: 20px;
}

#userPanel #compras .list-group-item {
    font-size: 14px;
    padding: 10px 15px;
}

/* Formulario perfil */
#userPanel #perfil h5 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

#userPanel form .form-control {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}

#userPanel form .form-control:focus {
    border-color: #73ad21;
    box-shadow: 0 0 5px rgba(115, 173, 33, 0.3);
}

#userPanel form button {
    background-color: #73ad21;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#userPanel form button:hover {
    background-color: #5c8e1a;
}

/* Separación entre sidebar y contenido en pantallas pequeñas */
@media (max-width: 991px) {
    #userPanel .list-group {
        margin-bottom: 20px;
        /* espacio debajo de la sidebar */
    }

    #userPanel .content-panel {
        max-width: 100%;
        /* para que el contenido se ajuste bien */
    }
}