.search-container {
    position: relative;
}

.input-group {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.input-group-text {
    /* background-color: #fff !important; */
    background-color: transparent !important;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #566a7f;
    border: 1px solid #ccc !important;
    border-radius: unset !important;
}

.input-group-text i {
    font-size: 20px !important;
}

.search-input {
    flex: 1; 
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: transparent;
    /* color: #566a7f; */
    outline: none;
    font-size: 15px;
}

.search-input::placeholder {
    color: #b4bdc6 !important;
}

.search-input:focus {
    border-color: #696cff !important;
    outline: none !important;
}

.clear-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #aaa;
    display: none;
}

/* Show the icon when input has text */
.search-container.has-text .clear-icon {
    display: block;
}

/* Dropdown suggestion box */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: start;
}

/* Suggestion group title */
.suggestion-group-title {
    padding: 10px;
    font-weight: bold;
    background-color: #f7f7f7;
    border-top: 1px solid #eee;
    color: #566a7f;
}

/* Each suggestion item */
.suggestion-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 15px;
    color: #566a7f;
}

/* No result message */
.no-result {
    padding: 10px;
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* Hover effect for suggestion items */
.suggestion-item:hover {
    background-color: #f0f0f0;
}