* {
    user-select: none;           /* Bloquea selección de texto */
    -webkit-user-select: none;   /* Para Safari */
    -ms-user-select: none;       /* Para IE10+ */
    touch-action: manipulation;  /* Solo gestos básicos (evita doble toque zoom, etc.) */
}
body{
    /* background: url("./fondo.webp"); 
     background-size: cover; 
     background-position: center; */
    padding-top: 50px;
}


.footer{
    height: 80%;
}

.scroll{
    overflow-x: scroll;
}

#modal{
    overflow-y: scroll;
}


.skeleton {
    margin: 10px;
    height: 60px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}


.pyp {
    /* position: fixed; */
    bottom: 0;
}

.pyp a, .pyp img{
    margin: 0;
    padding: 0;
}

/* Cambiar el color de los botones primary */
.btn-primary {
    background-color: #9fcd3e !important;
    border-color: #8fb934 !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #729c18 !important;
}

.btn-primary:focus,
.btn-primary:focus-visible, 
.btn-primary:active {
    background-color: #7ea62c !important;
    outline-color: #6c921e !important;
    border-color: #6c921e !important;
    box-shadow: 0 0 5px rgba(159, 205, 62, 0.5) !important;
}

.step-primary::after, .step-primary::before{
    background-color: #729c18 !important;
}

.ring-primary{
    --tw-ring-color: #729c18 !important;
}

.ring-info{
    --tw-ring-color: #08a7df !important;
}

/* 🔹 Estilos para el estado disabled en primary */
.btn-primary:disabled, 
.btn-primary[disabled] {
    /* background-color: #b6db7c !important; */
    background-color: #767676 !important;
    border-color: #6e6e6e !important;
    color: #ecececea !important; /* Blanco con opacidad */
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* Cambiar el color de los botones info */
.btn-info {
    background-color: #08a7df !important;
    border-color: #0795c7 !important;
    color: white !important;
}

.btn-info:hover {
    background-color: #0787b6 !important;
}

.btn-info:focus, 
.btn-info:active {
    background-color: #0684b0 !important;
    border-color: #05739a !important;
    box-shadow: 0 0 5px rgba(8, 167, 223, 0.5) !important;
}

/* 🔹 Estilos para el estado disabled en info */
.btn-info:disabled, 
.btn-info[disabled] {
    background-color: #6ccbe7 !important;
    border-color: #5ab8d5 !important;
    color: #ffffff80 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/*badge-info*/
.badge-info{
    background-color: #08a7df    !important;
}

/*alert-success*/
.alert-success, .badge-success{
    background-color: #9fcd3e    !important;
    color: white !important;
}

/* tamaño nombre profesional */
#doctorMuestra, #fechaTurnoMuestra, #horaTurnoMuestra {
    font-size: clamp(1rem, 5vw, 2rem); /* Tamaño mínimo 1rem, máximo 2rem, flexible entre ellos */
}

.stat{
    padding-left: 15px;
    padding-right: 15px;
}

/* Estilos personalizados para KioskBoard */
.kioskboard-wrapper {
    background-color: #0069a3 !important;
    padding-top: 80px !important;
}
.kioskboard-wrapper::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 72px;
    background-image: url('bs_logo_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.kioskboard-row {
    display: flex !important;
    justify-content: center !important;
}
.kioskboard-key {
    background-color: #ffffff !important;
    color: #0069a3 !important;
    border: 1px solid #0069a3 !important;
}
.kioskboard-key[data-kioskboard-type="key"] {
    flex: 1;
    margin: 3px !important;
}
.kioskboard-key:hover {
    background-color: #e6f3ff !important;
}
.kioskboard-key-special {
    background-color: #fab239 !important;
    color: #ffffff !important;
}
.kioskboard-key-special:hover {
    background-color: #f9a10a !important;
}

/* modal al frente de todo */
#modal{
    z-index: 10;
}

/* animacion de slider */
.slider-container {
    transition: transform 0.5s ease-in-out;
}

.kiosco, .label, .input, kioskboard-key, .btn, a {
    cursor: none !important;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
}

/* modal datepicker nuevo */
.modal-picker {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}
.modal-picker-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 700px;
  font-size: 1.4em;
  text-align: center;
}


.selector-popup {
  background: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  margin: 10px auto;
  padding: 10px;
  z-index: 1000;
  text-align: center;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
}

.selector-wrapper {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin: 10px auto;
  z-index: 1000;
}
.anio-scrollable {
  max-height: 500px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dia-popup {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
