.nepalevs-car-range {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.nepalevs-car-range h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.range-display {
    margin-bottom: 20px;
}

.range-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.range-label {
    font-weight: bold;
    color: #555;
}

.range-value {
    color: #2c3e50;
}

.condition-results {
    background: #e8f4f8;
    border: 1px solid #b3d4fc;
}

.range-instruction {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.range-conditions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.condition-button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.condition-button img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.condition-button span {
    font-size: 14px;
    color: #333;
}

.condition-button:hover {
    background: #f1f1f1;
    border-color: #bbb;
}

.condition-button.active {
    background: #e8f4f8;
    border-color: #b3d4fc;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .nepalevs-car-range h3 {
        font-size: 20px;
    }

    .range-item {
        font-size: 14px;
        padding: 8px 10px;
    }

    .range-instruction {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .condition-button img {
        width: 30px;
        height: 30px;
    }

    .condition-button span {
        font-size: 12px;
    }
}