﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sortorder i {
    font-size: 0.75rem;
    color: #666;
}

.whatsapp-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 998; /* MENOR que el de los modales Swal */
}

.whatsapp-label {
    font-size: 13px;
    font-weight: 600;
    color: #25D366;
    background: white;
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-align: center;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out;
}

    .whatsapp-float:hover {
        background-color: #1eb253;
    }
