body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f4f4f4;
}

h1 {
    color: #333;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

input[type="text"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
}

.button-buscar {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ff9100;
    color: #fff;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

button:hover {
    background-color: #9e5a00;
}

#boletos {
    margin-top: 20px;
}

.boleto-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.boleto-box p {
    margin: 0 0 10px;
}

.boleto-button {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.boleto-button:hover {
    background-color: #0056b3;
}

.boleto-button.disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.copy-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

.copy-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    max-width: 300px;
    resize: vertical;
    overflow: auto;
}

.copy-button {
    display: block;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background-color: #17a2b8;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.copy-button:hover {
    background-color: #138496;
}

.carousel {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;

}

.carousel-images img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-90%);
}

.carousel-control {
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.3;
}