/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 25 2026 | 13:50:10 */
/* === Bắt đầu Search form custom style === */
.flat-search .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.flat-search .search-field {
    max-width: 180px; /* chỉnh theo ý bạn */
	  width: 100%;
    padding: 10px 12px 10px 38px; /* chừa khoảng cho icon */
    border: 1px solid #fb5d13;
    border-radius: 30px;
    font-size: 13px;
    color: #fb5d13;
    outline: none;
    transition: all 0.3s ease;
}

.flat-search .search-field::placeholder {
    color: #fb5d13;
    opacity: 0.7;
}

.flat-search .search-field:focus {
    box-shadow: 0 0 6px #fb5d1350;
}

/* Icon bên trong ô */
.flat-search .search-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    color: #fb5d13;
    pointer-events: none;
}
/* === Kết thúc Search form custom style === */