.col-md-6.border {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-md-6.border:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.img-btn {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.img-btn img {
    display: block;
}

.img-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.btn-bg-carfax {
    background-image: url('/assets/img-temp/150x150/carfax.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 50px;
}

.slider-container {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin: 10px 0;
}

.slider-track {
    height: 100%;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-radius: 4px;
    position: relative;
    min-width: 2px;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    cursor: grab;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    z-index: 2;
}

.slider-thumb:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-thumb:active {
    cursor: grabbing;
}

.credit-result {
    border: 2px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
