/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f5f5f5;
}

#boletos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
    justify-content: center;
}

.boleto {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
#apartarBoletosButton {
    padding: 10px 20px;
    background-color: #327fdb;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
#apartarBoletosButton:hover {
    background-color: #94b7e3;
}
#maquinaNumerosButton {
    padding: 10px 20px;
    background-color: #cd6006;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
#maquinaNumerosButton:hover {
    background-color: #d1935f;
}
.boleto:hover {
    background-color: #45a049;
}

.boleto:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.boleto.selected {
    background-color: blue;
}

#modal, #modalMaquinaNumeros {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

input[type="tel"], input[type="text"], select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 5px 0;
}

button:hover {
    background-color: #45a049;
}

button[type="button"] {
    background-color: #f44336;
}

button[type="button"]:hover {
    background-color: #e53935;
}

@media (max-width: 600px) {
    #boletos-container {
        max-width: 100%;
    }

    #modal, #modalMaquinaNumeros {
        max-width: 90%;
    }
}
@media (max-width: 374px) {
    #boletos-wrapper {
        height: 50vh;
        border: 1px solid #ccc;
        padding: 10px;
        width: 100% !important;
    }
  }
  
  @media (min-width: 375px ) and (max-width: 424px) {
    #boletos-wrapper {
        height: 50vh;
        border: 1px solid #ccc;
        padding: 10px;
        width: 100% !important;
    }
  }
  
  @media (min-width: 425px ) and (max-width: 767px) {
    #boletos-wrapper {
        height: 50vh;
        border: 1px solid #ccc;
        padding: 10px;
        width: 100% !important;
    }
  }
  
  @media (min-width: 768px ) and (max-width: 1023px) {
    #boletos-wrapper {
        height: 50vh;
        border: 1px solid #ccc;
        padding: 10px;
        width: 100% !important;
    }
  }
  
  @media (min-width: 1024px ) and (max-width: 1439px) {
    #boletos-wrapper {
        height: 50vh;
        border: 1px solid #ccc;
        padding: 10px;
        width: 100% !important;
    }
  }
  
  @media (min-width: 1440px ) and (max-width: 2559px) {
    
  }
  
  @media (min-width: 2560px ) {
    
  }