﻿body {
}

.button-danger {
    background-color: #ef5f5f47;
    border: none;
    width: 40px;
    border-radius: 8px;
    color: #ef5f5fcf;
}

    .button-danger:hover {
        background-color: #ff5d5d;
        color: white;
        border: none;
    }

.button-primary {
    background-color: #0189fa40;
    border: none;
    width: 40px;
    border-radius: 8px;
    color: #0189fad9;
}

    .button-primary:hover {
        background-color: #0189fab0;
        color: white;
        border: none;
    }

.button-warning {
    background-color: #ff99074a;
    border: none;
    width: 40px;
    border-radius: 8px;
    color: #e38805a8;
}

    .button-warning:hover {
        background-color: #ff990796;
        color: white;
        border: none;
    }

.button-secondary {
    background-color: #cccfce75;
    color: #929594;
    border: none;
    width: 40px;
    border-radius: 8px;
}

    .button-secondary:hover {
        background-color: #929594;
        color: white;
        border: none;
    }

.button-cargando {
    background-color: #2ca44442;
    color: #2ca444;
    border: none;
    width: 40px;
    border-radius: 8px;
}

.card-cliente {
    border-bottom: 1px solid #e3dede;
    padding: 7px;
    font-size: 13px;
    width: 100%;
    justify-content: space-between;
}

.cliente-nombres {
    display: flex;
    justify-content: space-between;
    color: black;
}

.body-detalle {
    background-color: white;
    font-size: 13px;
    width: 100%;
    margin-bottom: 5px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 12px;
}

/* ========== ScroolBar Detalle - Productos ==========*/
.scrool-detalle {
    overflow-y: auto; /* Habilita la barra de desplazamiento horizontal */
    /*white-space: nowrap;*/ /* Evita que el contenido se ajuste automáticamente */
}

    /* Estilos de la barra de desplazamiento */
    .scrool-detalle::-webkit-scrollbar {
        width: 5px; /* Establece la altura de la barra de desplazamiento */
    }

    .scrool-detalle::-webkit-scrollbar-thumb {
        background-color: silver; /* Color del pulgar de la barra de desplazamiento */
    }

    .scrool-detalle::-webkit-scrollbar-track {
        background-color: #f1f1f1; /* Color de la pista de la barra de desplazamiento */
    }