.vtf-search-container {
    height: 100vh; /* Đảm bảo chiều cao của giao diện không thay đổi */
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    /*justify-content: center;*/
    align-items: center;
    background-image: url('/image/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vtf-search-box {
    width: 100%;
    max-width: 1200px; /* Kích thước tối đa của ô tìm kiếm và nút */
    margin-bottom: 20px;
}

.vtf-results-container {
    width: 100%;
    max-width: 600px; /* Kích thước tối đa của phần kết quả */
    max-height: 2000px; /* Chiều cao tối đa để có thể cuộn */
    overflow-y: auto; /* Kích hoạt cuộn dọc khi nội dung quá dài */
}

.vtf-result-item {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.vtf-search-button {
    width: 100%;
    max-width: 150px; /* Kích thước tối đa của nút tìm kiếm */
}

.vtf-search-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 20px 0;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    color: transparent;
}

.clubSelect2 {
    width: 300px !important; /* Fixed width */
}

.select2-container--classic .select2-selection--multiple {
    border: none !important;
}
textarea::placeholder {
    color: #635C5F;
}
@media (max-width: 767.98px) {
    .vtf-search-container {
        overflow-y: auto;
    }

    .vtf-results-container {
        overflow-y: unset;
        margin-bottom: 10px;
    }
}

