html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.top-right-alert {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: auto;
    padding: 10px;
    box-sizing: border-box;
}


#loadingOverlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

    #loadingOverlay.hidden {
        display: none;
    }


.field-validation-error {
    color: red;
    font-size: smaller;
}

.logo-image {
    margin-bottom: 1rem; /* Ajusta este valor según tus necesidades */
}



.table-cell-wrap {
    table-layout: fixed;
}

.table-cell-wrap td {
    white-space: normal !important;
    word-wrap: break-word;
}


@media print {
    body * {
        visibility: hidden;
    }

    #printArea, #printArea * {
        visibility: visible;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
    }
}