.btn-wsp,
.btn-fb {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 300ms ease;
}

.btn-wsp {
    bottom: 25px;
    right: 25px;
    background: #25d366;
}

.btn-wsp:hover {
    background: #20ba5a;
}

.btn-fb {
    bottom: 95px; /* encima del botón de WhatsApp */
    right: 25px;
    background: #1877f2;
}

.btn-fb:hover {
    background: #155db8;
}

/* Responsive: mantiene tamaño en móviles */
@media only screen and (max-width: 768px) {
    .btn-wsp,
    .btn-fb {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 28px;
    }
}

/* Botones flotantes izquierda */
.floating-left-buttons {
    position: fixed;
    top: 20%;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.float-btn:hover {
    background-color: #218838;
}

.crop-icon {
    width: 40px;      /* o ajusta según lo que necesites, como 20px */
    height: 40px;
    object-fit: contain; /* o 'cover' si prefieres llenar sin distorsionar */
}


.custom-swal-popup {
    border-radius: 1rem;
    padding: 1em;
    max-width: 500px;
}

.custom-confirm-btn {
    background-color: #28a745 !important;
    color: white !important;
    font-weight: bold;
    border-radius: 0.5em;
    padding: 0.6em 1.2em;
}