.calculator-container {}

.calculator-title-steps {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1F2937;
}

.calculator-title-steps-number {
    font-size: 0.875rem;
    font-weight: bold;
    margin-right: 8px;
    background-color: #ec4f82;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cpu-value {
    color: #4B5563;
}

.calculator-content {}


.config-intro {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.config-section {
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1F2937;
}

.section-description {
    font-size: 0.9rem;
    color: #4B5563;
    margin-bottom: 20px;
}

.section-divider {
    border: none;
    border-top: 1px solid #D1D5DB;
    margin: 30px 0;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider {
    flex: 1;
    height: 6px;
    background-color: #D1D5DB;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background-color: #5284eb;
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background-color: #5284eb;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.number-input {
    width: 80px;
    padding: 8px 12px;
    background-color: #ffffff;
    border: 1px solid #D1D5DB;
    color: #1F2937;
    font-size: 1rem;
    text-align: center;
    -moz-appearance: textfield;
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input:focus {
    outline: 1px solid #5284eb;
    outline-offset: 2px;
}

.unit {
    color: #4B5563;
    font-size: 0.9rem;
}

.model-selector {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.model-selector--half .model-option {
    flex: 0 0 auto;
}

.model-option {
    position: relative;
    cursor: pointer;
}

.model-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.model-label {
    display: inline-block;
    min-width: 120px;
    padding: 12px 16px;
    background-color: #f3f4f6;
    color: #4B5563;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 12px;
    user-select: none;
    border: none;
}

.model-option input[type="radio"]:checked + .model-label {
    background-color: #5284eb;
    color: #ffffff;
}

.model-option:hover .model-label {
    color: #5284eb;
}

.model-option input[type="radio"]:checked + .model-label:hover {
    background-color: #3a6fd8;
    color: #ffffff;
}

.model-info-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.model-info-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-info-features li {
    font-size: 0.9rem;
    color: #4B5563;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.model-info-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5284eb;
    font-weight: bold;
}

.price-display {
    text-align: right;
    margin-top: 20px;
}

.price-monthly {
    color: #4B5563;
    font-size: 1rem;
    margin-bottom: 8px;
}

.price-yearly {
    color: #1F2937;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.price-yearly strong {
    font-weight: bold;
}

.price-note {
    color: #6B7280;
    font-size: 0.85rem;
    margin-top: 8px;
}

.checkbox-option {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #1F2937;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #5284eb;
    cursor: pointer;
    flex-shrink: 0;
}

.waf-features {
    margin-top: 12px;
}

.waf-price-note {
    font-size: 0.9rem;
    color: #5284eb;
    font-weight: 600;
    margin-top: 8px;
}

.export-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .export-form {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .export-form-field {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .export-form .export-text-input {
        max-width: none;
    }
}

.export-form-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
}

.export-text-input {
    width: 100%;
    max-width: 320px;
    padding: 10px 12px;
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    box-sizing: border-box;
}

.export-text-input:focus {
    outline: 1px solid #5284eb;
    outline-offset: 2px;
}

.export-button {
    width: 100%;
    padding: 15px 30px;
    background-color: #5284eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0;
}

.export-button:hover:not(:disabled) {
    background-color: #3a6fd8;
}

.export-button:active:not(:disabled) {
    background-color: #2d5cbf;
}

.export-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .input-wrapper {
        justify-content: flex-end;
    }
}

.managed-services-list-field {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.managed-services-list-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
}

.managed-services-list-input {
    width: 100%;
    box-sizing: border-box;
    min-height: 100px;
    padding: 10px 12px;
    background-color: #ffffff;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    color: #1F2937;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.45;
    resize: vertical;
}

.managed-services-list-input:focus {
    outline: 1px solid #5284eb;
    outline-offset: 2px;
}

.managed-services-list-input::placeholder {
    color: #9CA3AF;
}
