/* Search Korea - Custom Styles */

/* Force proper input field sizing for all languages */
.form-control {
    min-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure search input fills container properly */
.search-form .form-control {
    width: 100% !important;
    max-width: 100% !important;
}

/* Traditional Chinese specific fixes */
[data-lang="tw"] .form-control {
    font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", sans-serif !important;
}

/* Prevent placeholder text truncation */
.form-control::placeholder {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

/* Responsive placeholder for mobile */
@media (max-width: 576px) {
    .form-control::placeholder {
        font-size: 0.9rem;
    }
}