.simulator-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}


.units-display {
    background: linear-gradient(180deg, #0d9c42 0%, #22c55e 100%);
    color: white;
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.units-number {
    font-size: 4rem;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.units-label {
    font-size: 1.2rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slider-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 10px 5px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-container:hover {
    border-color: #22c55e;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.slider-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-calls {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
}

.icon-sms {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

.icon-data {
    background: linear-gradient(135deg, #6ee7b7, #34d399);
    color: white;
}

.slider-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.range-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9c42 0%, #22c55e 100%);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.5);
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.7);
}

.range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.5);
    transition: all 0.3s ease;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.7);
}

.consumption-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #0d9c42 0%, #22c55e 100%);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.input-units {
    border: 2px solid #22c55e;
    border-radius: 10px;
    padding: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.input-units:focus {
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
    border-color: #16a34a;
}

.offer-select {
    border: 2px solid #22c55e;
    border-radius: 10px;
    padding: 12px;
    font-size: 1.1rem;
    background: white;
}

.offer-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
    border-color: #16a34a;
}

.unlimited-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.unlimited-badge-bg {
    background: #1877F2;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #16a34a;
}

.lang-btn.active {
    background: #0d9c42;
    font-weight: bold;
}

.rtl {
    direction: rtl;
    text-align: right;
}

button,input,select {
 border-radius: 0px !important;
}
