body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

h1,
h2 {
    text-align: center;
}

#conteo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#conteo-display {
    width: 100%;
    text-align: center;
    margin: 10px 0;
    font-size: 3em;
    font-weight: bold;
}

#conteo-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#conteo-buttons-top,
#conteo-buttons-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-precio {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.btn-precio:nth-child(2) {
    background-color: #2196F3;
}

.btn-precio:nth-child(3) {
    background-color: #ff9800;
}

.btn-precio:nth-child(4) {
    background-color: #9c27b0;
}

#restar-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#btn-restar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f44336;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
}

#registro-btn-container {
    text-align: center;
    margin-bottom: 20px;
}

#btn-registro {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 5px;
}

#registro-form {
    margin-top: 20px;
    display: none;
}

label {
    display: block;
    margin-bottom: 5px;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#form-visitante {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#form-visitante button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

#agradecimiento {
    margin-top: 10px;
    text-align: center;
}

#q10 {
    color: #ff9933;
    font-weight: bold;
}

#total-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#total-label {
    margin-bottom: 5px;
}

#total-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #008CBA;
}

#cantidad-genero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.cantidad-selector {
    display: flex;
    align-items: center;
}

.cantidad-btn {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

#cantidad-mujer,
#cantidad-hombre {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}