/* Fix for input text overlapping with icons, especially for translations */
.vtc-force-padding {
    padding-left: 3rem !important;
    /* 48px to clear the icon */
    padding-right: 3rem !important;
    /* space for the geolocation icon */
}

/* Ensure placeholder color is visible against dark backgrounds if needed */
.vtc-force-white-placeholder::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

/* Ensure text color is white on dark backgrounds */
.vtc-force-white-text {
    color: #ffffff !important;
}

/* Handle translated text overflow */
.vtc-force-padding::placeholder {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}