/* Deshabilita copia de texto */
Body {
  user-select: none;
}
Body::selection {
  background: none;
}
Body::-moz-selection {
  background: none;
}


body {
    font-family: Arial, sans-serif;
    background-color: transparent;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 80%;
    max-width: 1200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-column,
.right-column {
    flex: 1;
    padding: 20px;
}

h2 {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

form label,
form input,
form select {
    width: 95%;
    margin-bottom: 15px;
}

form label {
    margin-bottom: 5px;
    font-weight: 600;
}

form input[type="number"],
form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.small-text {
    font-size: 80%;
    display: inline;
    font-style: italic;
    font-weight: 500;
}

input[type="submit"] {
    background-color: #34433c;
    border: none;
    color: white;
    padding: 14px 28px; /* Aumentamos el padding para hacer el botón más grande */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px; /* Incrementamos el tamaño del texto */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px; /* Añadimos margen superior */
}

input[type="submit"]:hover {
    background-color: #1F2824;
}

input[type="submit"]:active {
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom Checkbox */
form input[type="checkbox"] {
    display: none;
}

form label.checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin-top: 15px;  /* Separación entre los checkboxes */
}

form label.checkbox-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #32a852;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

form input[type="checkbox"]:checked + label.checkbox-label:before {
    background-color: #34433c;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center center;
}
/* Estilos específicos para los resultados */
#resultados {
    padding: 10px;
    border: 1px solid #e4e4e4;
    background-color: #f9f9f9;
    margin-top: 20px;
}

#resultados strong {
    display: block;
    font-size: 1.1em;
    margin-top: 10px;
    margin-bottom: 5px;
}

#resultados br {
    margin-bottom: 5px;
}
/* Media query para pantallas de hasta 768px */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0;
    }
    .left-column, .right-column {
      padding: 10px;
    }
}
