.herramienta-container {
    width: 100%;
    max-width: 100%;
    padding: 2% 3%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.checkbox-group, .options-group, .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.results-table th, .results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.results-table th {
    background-color: #f4f4f9;
    font-weight: bold;
}

textarea, input[type="file"] {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 12px 20px;
    border-radius: 5px;
    background: #4f45e5;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #333;
}

.options-group {
    display: flex;
    align-items: center; /* Alinear verticalmente al centro */
    justify-content: flex-start; /* Alinear horizontalmente al inicio */
    gap: 10px; /* Espaciado entre elementos */
    margin: 15px 0; /* Separación de la fila respecto a otros elementos */
}

.options-group button {
    flex-shrink: 0; /* Evitar que el botón se redimensione */
}

.options-group .label {
    white-space: nowrap; /* Evitar que el texto se divida en varias líneas */
    font-size: 16px; /* Tamaño del texto consistente */
}

.options-group label {
    display: flex;
    align-items: center; /* Alinear la casilla con su texto */
    gap: 5px; /* Espaciado entre casilla y texto */
}


@media (max-width: 768px) {
    .button-group button {
        width: 100%;
    }
    .results-table th, .results-table td {
        font-size: 14px;
    }
}
