.price-simulator {
    --primary-color: #2563eb;
    --border-color: #e5e7eb;
    --text-color: #374151;
    --bg-color: #ffffff;
    --hover-bg: #f3f4f6;
    
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.simulator-container {
    background-color: var(--bg-color);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 2rem;
}


.simulator-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
   
}

.simulator-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    cursor: pointer;
    transition: all 0.2s;
}

.simulator-select:hover {
    border-color: var(--primary-color);
}

.simulator-options {
    margin-top: 2rem;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.toggle-group {
    display: flex;
    gap: 1rem;
    background-color: var(--hover-bg);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.toggle-option {
    flex: 1;
    position: relative;
}

.toggle-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.toggle-option span {
    display: block;
    padding: 0.75rem;
    text-align: center;
    background-color: transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-option input:checked + span {
    background-color: var(--bg-color);
    color: var(--primary-color);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--hover-bg);
    border-radius: 0.5rem;
}

.price-from, .price-to {
    text-align: center;
}

.label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency, .unit {
    font-size: 1.5rem;
}

.price-separator {
    font-size: 1.5rem;
    color: var(--text-color);
}

.simulator-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .toggle-group {
        flex-direction: column;
    }
    
    .price-range {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-separator {
        display: none;
    }
}