/* /modules/calculadora/views/css/front.css */
#fence-calculator-app {
    border: 1px solid #ddd;
    padding: 20px;
    position: relative;
    min-height: 200px;
    margin-bottom: 20px;
}

#fence-calculator-app.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

#fence-calculator-app.loading::after {
    content: 'Cargando...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    font-weight: bold;
}

.calculator-step h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.calculator-step .options .option {
    margin-bottom: 10px;
}

.calculator-step .options .option label {
    margin-left: 8px;
    cursor: pointer;
}

.calculator-summary .product-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.summary-actions .btn {
    margin-right: 10px;
}