/* Estilos para el calculador de longitud personalizado */

.custom-calculator-fields {
    margin: 20px 0;
}

.custom-length-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.custom-length-field {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    flex: 1;
}

.custom-length-field label {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.custom-length-field select,
.custom-length-field input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-length-container {
        flex-direction: column;
        gap: 10px;
    }

    .custom-length-field {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .custom-length-container {
        gap: 8px;
    }

    .custom-length-field label {
        font-size: 12px;
    }

    .custom-length-field select,
    .custom-length-field input {
        padding: 10px;
        font-size: 12px;
    }
}