/* ==== Estilo ListBebé - inspirado en Warehouse/IQIT ==== */

.listbebeaccountlink-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.listbebe-card {
    max-width: 780px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e6e9ec;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    padding: 28px 32px;
    margin: 25px auto;
    transition: box-shadow 0.25s ease;
    font-family: "Open Sans", "Roboto", sans-serif;
}

.listbebe-card:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.07);
}

.listbebe-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.listbebe-icon {
    font-size: 28px;
    margin-right: 10px;
    color: #6c63ff;
}

.listbebe-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: 0.3px;
}

.listbebe-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.listbebe-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Botones estilo Warehouse --- */
.btn-listbebe {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-listbebe:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    opacity: 0.95;
}

.btn-blue  { background-color: #5c6ac4; }    /* azul Warehouse */
.btn-gray  { background-color: #b0b8c1; }    /* gris suave */
.btn-green { background-color: #00c27a; }    /* verde brillante */

.listbebe-info {
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    background: #f9fafb;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px dashed #cfd4da;
}

/* --- Animaciones suaves --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.listbebe-card {
    animation: fadeIn 0.4s ease;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .listbebe-card {
        padding: 20px;
        margin: 15px;
    }

    .listbebe-buttons {
        flex-direction: column;
    }

    .btn-listbebe {
        width: 100%;
        text-align: center;
    }
}
