/* Стили только для формы калькулятора */
.pro-split-calc {
    width: 100%;
}

.pro-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pro-form-col {
    flex: 2;
    min-width: 300px;
}

.pro-results-col {
    flex: 3;
    min-width: 300px;
}

.pro-field {
    margin-bottom: 15px;
}

.pro-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.pro-input, .pro-select {
    width: 100%;
    max-width: 300px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.pro-hint {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.pro-checkbox-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-checkbox-input {
    width: 16px;
    height: 16px;
}

.pro-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.pro-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.pro-btn-primary {
    background: #1976d2;
    color: white;
}

.pro-btn-secondary {
    background: #6c757d;
    color: white;
}

.pro-results-card {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
}

.pro-results-title {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.pro-result-group {
    margin-bottom: 20px;
}

.pro-result-group-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.pro-result-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}

.pro-result-label {
    font-weight: 500;
}

.pro-result-value {
    font-family: monospace;
}