/**
 * Style dla kalkulatora motków chenille
 */

.blanket-calculator-wrapper {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
}

.calculator-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Lewa kolumna - Formularz */
.calculator-left {
    padding-right: 20px;
}

.calculator-form .form-group {
    margin-bottom: 25px;
}

.calculator-form label {
    display: block;
    font-size: 14px;
    color: #495057;
    margin-bottom: 8px;
    font-weight: 500;
}

.motek-info {
    background: #e9ecef;
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.motek-info strong {
    color: #2c3e50;
    font-size: 15px;
}

.motek-weight {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
}

/* Style dla suwaków */
.blanket-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #dee2e6;
    outline: none;
    -webkit-appearance: none;
}

.blanket-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blanket-slider::-webkit-slider-thumb:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.blanket-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.blanket-slider::-moz-range-thumb:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* Prawa kolumna - Podsumowanie */
.calculator-right {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 0;
}

.summary-content {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    flex-grow: 1;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.summary-value {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
}

/* Wyróżnienie wyniku */
.summary-result {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
}

.summary-result .summary-label {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.result-number {
    font-size: 24px;
    color: #28a745;
    font-weight: 700;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 767px) {
    .calculator-left,
    .calculator-right {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .calculator-right {
        margin-top: 30px;
    }
    
    .blanket-calculator-wrapper {
        padding: 20px 15px;
    }
}