#professional-search {
    font-family: Arial, sans-serif;
}

.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.tab-button.active {
    background-color: #800000;
    color: #fff;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 100%;
}

.dropdown-content div {
    padding: 10px;
    cursor: pointer;
}

.dropdown-content div:hover {
    background-color: #f1f1f1;
}

.search-button {
    background-color: #800000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.search-button:hover {
    background-color: #4e0000;
}

.location-input-container {
    position: relative;
}

.location-input-container input[type="text"] {
    width: 100%;
    padding-right: 30px; /* Adjust padding to make space for the icon */
}

.location-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.show-map-button {
    background-color: #800000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.show-map-button:hover {
    background-color: #4e0000;
}


#error-tooltip {
    position: fixed;
    top: 10px;
    right: 10px;
    display: none;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}






























#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}











.off-white-btn {
    background-color: #f0f0f0; /* 
    color: #000; /* Black text */
    border: 1px solid #ccc;
    padding: 4px 20px 6px 20px;
    cursor: pointer;
        font-family: system-ui;
    border-radius: 23px;
    font-weight: 500;
    
}





.off-white-btn:hover{
    background-color:#751521;
    

}

.blue-btn{
   background-color:#CDE1FF;
   color:#1138F7;
   border: none;
       cursor: pointer;
        font-family: system-ui;
    border-radius: 23px;
    font-weight: 500;
;
}





.tooltip {
    position: fixed!important;
    bottom: 20px!important!important;
    left: 80%!important;
    transform: translateX(-50%)!important!important;
    background-color: rgba(0, 0, 0, 0.8)!important;
    color: white!important;
    padding: 20px!important;
    border-radius: 5px!important;
    z-index: 9999;
}

/* Error Tooltip */
#error-tooltip {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: red!important;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    font-size: 14px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInOut 0.5s ease-out;
}

/* Success Tooltip */
#success-tooltip {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 128, 0, 0.8); /* Green background for success */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    font-size: 14px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInOut 0.5s ease-out;
}

/* Tooltip fade-in and fade-out animation */
@keyframes fadeInOut {
    0% { opacity: 0; }
    100% { opacity: 1; }
}








/*.error-tooltip {*/
/*    background-color: red;*/
/*}*/

/*.success-tooltip {*/
/*    background-color: green;*/
/*}*/
