.custom-search-container {
    height: 100%;
    /*display: flex;*/
    border: 1px solid #9e2a47; /* Maroon border color */
    /*background-color: #f0f0f0; !* Light gray background *!*/
}
.container{
    align-items: center;
    max-width: 100%;
    margin:0  20px;
}
.custom-search-input {
    border: none;
    outline: none;
    padding: 8px 12px;
    width: 80%; /* Adjust width to leave space for the button */
    border-radius: 0 !important; /* Circular button */
    font-size: 16px; /* Font size adjustment */
}

.custom-search-button {
    background: #9e2a47; /* Maroon button */
    border: none;
    width: 50%;
    /*padding: 8px;*/
    /*cursor: pointer;*/
    border-radius: 0 !important; /* Circular button */
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    /*margin-left: 10px; !* Spacing between the input and button *!*/
}

.custom-search-button i {
    color: white;
    font-size: 18px; /* Adjust icon size to fit within the circle */
}

.category-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #ffffff;
    padding-bottom: 50px;
}

.category-button {
    background: #ffffff !important;
    border: 2px solid #bbbbbb;
    border-radius: 0px !important;
    padding: 10px;
    margin: 15px;
    text-align: center;
    cursor: pointer;
    color: #9e2a47;
    font-size: 16px;
}

.category-button:hover {
    background-color: #9e2a47;
    color: #0a7aff;
}
