/* Стили для кастомного фильтра пробега */
.custom-mileage-filter {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
    font-family: inherit;
}

.mileage-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
    font-size: 16px;
    text-align: center;
}

.mileage-inputs-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-end;
}

.input-group {
    flex: 1;
    position: relative;
}

.mileage-input {
    width: 100%;
    padding: 12px 10px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.mileage-input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.input-group label {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
    text-align: center;
}

.mileage-apply-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 8px;
}

.mileage-apply-btn:hover {
    background: #0056b3;
}

.mileage-reset-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.mileage-reset-btn:hover {
    background: #e9ecef;
    color: #495057;
}