
.search-container {
    overflow-y: auto;
    max-height: 95%;
    width: 84%;
    max-width: 400px;
    position: absolute;
    top: 2px;
    left: 3em;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    display:none;
    flex-direction: column;
    z-index: 1000;
    gap: 5px;
}

.search-container-p {
    font-size: 1rem; 
    line-height: 1.5; 
    margin-top: 0;
    margin-bottom: 0 !important
}

#close-search {
    width: 16px;
    height: 16px;
}

#searchSQL {
    display: flex;
    font-size: 0.875rem; 
    line-height: 1.5; 
}

.searchSQL-div {
    flex: 1;
    text-align: center;
}

#search-button, #clear-button, #zoom-button, .zoomSearch{
    background-color:  #E4322C;
    color:white;
    border-radius: 5px;
    padding: 3px;
    border: none;
    font-size: 0.875rem; 
    line-height: 1.5; 
}

#search-button:hover, #clear-button:hover, #zoom-button:hover{
    background-color:#E4322C;
}

.abasSearch {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.tab-btn {
    padding: 2px 5px;
    font-size: 14px;     
    color: #374151;
    margin: 0px;
    border: none;
    background-color: #fff;
    flex: 1;
    white-space: nowrap;      
    overflow: hidden;          
    text-overflow: ellipsis;  
}

.tab-content {
    display: none;
    padding: 5px 0;
}

.coord-btn {
    flex: 1;
    padding: 2px;
    border: 1px solid #aaa;
    background: #f0f0f0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem; 
    line-height: 1.5; 
}

.coord-btn.active {
    background: #E4322C;
    color: white;
    border-color: #E4322C;
    font-weight: bold;
}

#search-coord-button{
    font-size: 0.875rem;
    line-height: 1.5; 
}

#clear-button {
    font-size: 0.875rem;
    line-height: 1.5; 
}

.result-items-sql {
    display: flex;
    
}

.result-items-sql p{
    margin: 0;
    flex: 1;   
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

.result-items-sql span{
    font-weight: normal;
}

.tab-btn:hover {
    color: #374151;       /* hover:text-gray-700 */
}

.tab-btn:focus {
    outline: none;        /* focus:outline-none */
}
.tab-btn.active {
    border-bottom: 4px solid #E4322C;
}

.tab-content.active {
    display: block;
}
@media (min-width: 1000px) {
    .search-container {
        top: 10px;
        left: 2.2em;
    }

}

