/*!*********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/css/globe.css ***!
  \*********************************************************************/
#marketplace #globe-container {
    width: 100%;
    height: 100%; /* Ensure globe container takes full height of its flex parent */
    transition: all 2s ease;
    background-color: transparent;
}
#marketplace {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

h6 {
    color: #fff;
    padding: 0.5rem 1rem; 
    border-radius: 0.25rem; 
    margin-bottom: 0.5rem;
}

.filter-bar {
    /* Removed position: absolute */
    margin-top: 0.75rem;
    z-index: 10;
    margin-left: auto; /* Center the filter bar */
    margin-right: auto; /* Center the filter bar */
}

#suggestions li {
    transition: background-color 0.2s ease, transform 0.2s ease;
}
#suggestions li:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.02);
    cursor: pointer;
}

#globe-tooltip {
    display: none;
    max-width: 250px;
    position: absolute;
    padding: 8px 12px;
    background-color: rgba(48, 58, 74, 0.7);
    color: #fff;
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.2s;
    opacity: 0;
}

#globe-hover-label {
    position: absolute;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    transform: translate(-50%, 10px);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 100;
    white-space: nowrap;
}

#filterContainers {
    display: flex;
    gap : 1rem ;
}

.keywords {
    color : grey;
    font-size: 0.8rem;
    padding : 0 0.5rem;
    margin-bottom: 0.5rem;
}

.btn.filter-btn {
    background-color: #BCBEBE;
    color : white;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 30px;
    padding : 0.5rem 1.5rem;
    border : none;
}

.btn.filter-btn.active {
    background-color: var(--color2);
}


#filterContainers hr{
    margin: 0 auto;
    width:calc( 100% - 1rem );
    color : rgb(0, 0, 0,0.3);
}
#filterContainers .form-check-label {
    color : var(--color1);
}

div.dt-container {
    display: flex;
    flex-direction: column;
    gap:0.5rem;
}

@media (max-width: 576px) {
    .dropdown-menu {
        width: 100%;
    }
}

.remove-btn {
    color : rgb(84, 89, 95);
    cursor: pointer;
    text-decoration: underline;
}

.remove-btn:hover {
    color : var(--color2);
}

#suggestions {
    position: absolute;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 4px;
}

.list-group-header {
    padding: 8px 16px;
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.list-group-item {
    padding: 10px 16px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

.list-group-item:hover {
    background-color: #f1f1f1;
}

.exact-match {
    background-color: #fff;
}

.semantic-match {
    background-color: #f8ffff;
    border-left: 3px solid #20a8d8;
}

.exact-match .match-type,
.semantic-match .match-type {
    font-size: 0.75rem;
    color: #6c757d;
    margin-left: 8px;
    font-style: italic;
}

/* Loading indicator */
.semantic-loading {
    color: #6c757d;
    font-style: italic;
    padding: 10px 16px;
}
