/* Van Selection Styles */
.van-image {
    width: 100%;
    height: 220px !important; /* Standard van image height */
    max-height: 350px !important; /* Maximum height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.van-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.van-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.van-option.selected {
    border-color: #ff7700;
    background-color: #fff4eb;
}

.van-details {
    margin-top: 10px;
}

.van-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.van-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.van-capacity {
    color: #ff7700;
    font-weight: 500;
}
