@media print {
    .no-print {
        display: none;
    }

    .themebody-wrap {
        webkit-margin-start: 0px !important;
        margin-inline-start: 0px !important;
    }

    .pageSize{
        height:20cm !important;
        page-break-inside: avoid !important;
    }
    .venta-fontsize {
        font-size: 10px !important;
      
    }
}

@media screen and (max-width: 575px) {
    .no-show-in-sm {
        display:none !important;
    }
}
@media screen and (min-width: 576px) {
    .no-show-mayor-to-sm {
        display: none !important;
    }
}

@media screen and (max-width: 575px) {
    .btn {
        font-size: 14px;
        padding: 12px 20px;
        width: 100% !important;
        margin-top: 15px;
    }
}

.customizer-action {
    display: none !important;
}

body {
    background-color: #1a1a1a; /* Adjust the background color as needed */
    color: white;
}

blazored-typeahead_result {
    color: black;
}

.blazored-typeahead.valid.modified {
    background-color: white;
}

.modal-content {
    color: black;
}

.cursor-pointer {
    cursor: pointer;
}

.btn {
    margin-right: 15px !important;
}


@font-face {
    font-family: 'CCode39';
    src: url('assets/fonts/connectcode39.woff') format('woff');
}

#barcode {
    font-weight: normal;
    font-style: normal;
    line-height: normal;
    font-family: 'CCode39', sans-serif;
    text-align: center;
    font-size: 32px
}

#barcode_text {
    font-weight: normal;
    font-style: normal;
    line-height: normal;
    font-family: sans-serif;
    text-align: center;
    font-size: 24px
}

.border-radius-img {
    border-radius: 20px !important;
}

.codigoBarrasArea {
    resize: none !important;
    height: 30px !important;
    overflow: hidden !important;
}

.analau-blazored-typeahead__input-mask-wrapper .blazored-typeahead__input-mask-wrapper {
    height: 25px !important;
}

.border-radius-img {
    border-radius: 10px;
    cursor: pointer;
}

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .fullscreen-overlay img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

.fixed-header-table {
    width: 100%;
    height: 800px; /*Ajusta la altura según tus necesidades */
    overflow-y: auto;
}

    .fixed-header-table thead th {
        position: sticky;
        top: 0;
        background-color: white; /* Color de fondo para la cabecera */
        z-index: 1; /* Asegura que la cabecera esté por encima del contenido */
    }


/* Estructura inicial del layout */


.codex-sidebar {
    width: 250px; /* Ancho del sidebar */
    transform: translateX(0); /* Visible por defecto */
    transition: transform 0.3s ease;
}

.content {
    flex: 1;
    transition: margin-left 0.3s ease;
    margin-left: 250px; /* Compensa el espacio del sidebar */
}

/* Cuando el checkbox está activado, oculta el sidebar y expande el contenido */
#menu-toggle:checked ~ .codex-sidebar {
    transform: translateX(-100%); /* Mueve el sidebar fuera de la vista */
}

#menu-toggle:checked ~ .content {
    margin-left: 0; /* Expande el contenido al 100% */
}