.vc-car-container-706caa32 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.vc-car-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: height 0.3s ease;
}

.vc-car-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.vc-car-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background-color: #fcfcfc;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    width: 100%;
}

.vc-car-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 18px;
    flex-shrink: 0;
}

.vc-car-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.vc-car-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vc-car-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.vc-car-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Arrows Navigation Styling */
.vc-car-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    padding: 0;
    color: #111;
    flex-shrink: 0;
}

.vc-car-arrow:hover {
    background-color: #fafafa;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.vc-car-arrow:active {
    transform: scale(0.95);
}

.vc-car-arrow svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
