﻿body {
    font-size: 12px; /* Cambia este valor al tamaño de fuente deseado */
}

.e-grid .e-headercell {
    font-size: 10px;
}

.e-grid .e-rowcell {
    font-size: 10px !important; /* Cambia este valor al tamaño de fuente deseado */
}

/* Cambiar el tamaño de fuente del encabezado de las columnas */
.e-grid .e-columnheader .e-headercelldiv {
    font-size: 11px; /* Cambia este valor al tamaño de fuente deseado */
}

.e-grid .e-gridcontent {
    font-size: 10px;
}
/* Cambiar el tamaño de fuente del pie del grid */
.e-grid .e-summarycell {
    font-size: 10px; /* Cambia este valor al tamaño de fuente deseado */
}

.e-boton-grid {
    align-content: center;
    font-size: 10px !important;
    border-radius: 100px !important;
    height: 40px !important;
    width: 40px !important;
}

.e-full-buttonSf {
    height: 27px;
    width: 100%;
    font-size: 12px !important;
}

.blocking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.mayusculas {
    text-transform: uppercase;
    font-size: 10px !important;
}
.e-control-wrapper.conversion .e-textbox {
    text-transform: uppercase;
}
.contenedor-boton-unico{
    margin-right: 6px;
}


/*Estilos para boton de habilitos, comprobantes, DJ*/
.button-container {
    display: flex;
    justify-content: flex-start; /* Alinea los botones horizontalmente */
    margin-left: 10px; /* Ajusta según tus necesidades */
    flex-direction: row;
}

.button-habilito {
    margin-right: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Ajusta según tus necesidades */
    background-color: #3498db; /* Color de fondo del botón */
    border: none;
    color: #ffffff; /* Color del texto */
    text-align: center;
    text-decoration: none;
    width: 70px;
    height: 60px;
    font-size: 9.5px;
    cursor: pointer;
    border-radius: 8px; /* Bordes redondeados */
    transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .button-habilito:hover {
        background-color: #2d7fb6; /* Nuevo color de fondo cuando se pasa el mouse por encima */
    }

    .button-habilito:active {
        box-shadow: 0px 0px 0px 3px #8fd2ff;
    }

    .button-habilito span {
        margin-inline: 2px;
        align-self: center; /* Centra verticalmente el texto dentro del contenedor del botón */
        line-height: 1;
    }

    /* Estilo para la imagen dentro del botón */
    .button-habilito img {
        margin-top: -1px;
        width: 24px; /* Ancho de la imagen */
        height: 24px; /* Altura de la imagen */
        vertical-align: middle; /* Alinea verticalmente la imagen y el texto */
        margin-bottom: 4px;
    }


.icon-grid {
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: none;
}

.text-pendiente-liquidacion {
    background-color: #ffbdae;
    color: red;
    margin: auto;
    padding-left: 5px;
}

.text-pendiente-contabilidad {
    background-color: #f7ff7c;
    color: #5b5b5b;
    margin: auto;
    padding-left: 5px;
}

.text-pendiente-gerencia {
    background-color: #bbffd0;
    color: green;
    margin: auto;
    padding-left: 5px;
}

.text-liquidacion-aprobada {
    background-color: #e0b7ff;
    color: #410271;
    margin: auto;
    padding-left: 5px;
}

.contenedor-liquidacion {
    display: flex;
    align-items: center;
}

.cuadrado-rojo {
    width: 16px;
    height: 16px;
    background-color: red;
    margin-right: 2px; /* Ajusta el espacio entre el cuadrado y el texto según sea necesario */
}

.contenedor-boton-unico {
    margin-right: 8px;
}


