
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

#toolbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

#search-container, #tag-filter-container, #unlocated-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#search-bar-placeholder {
    width: 250px;
}

#tag-filter-button {
    padding: 8px 12px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

#tag-filter-button:hover {
    background-color: #e0e0e0;
}

#tag-filter-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1001;
    width: 200px;
}

#tag-filter-content.show {
    display: block;
}

#tag-filter-content div {
    margin-bottom: 8px;
}

#tag-filter-content input[type="checkbox"] {
    margin-right: 5px;
}

#unlocated_projects_dropdown {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s;
}

#unlocated_projects_dropdown:focus {
    border-color: #4da8ff;
    outline: none;
}

.projects-container {
    max-height: 250px;
    overflow-y: auto;
    font-size: 12px;
}

.project-list div {
    margin-bottom: 2px;
}

.project-list a, .project-list span {
    white-space: normal;
    word-wrap: break-word;
    font-size: 12px;
}

.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-size: 14px;
    text-align: center;
    max-width: 80%;
    overflow-wrap: break-word;
}

.leaflet-control-search .search-input {
    display: block !important;
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.leaflet-control-search .search-input:focus {
    border-color: #4da8ff;
    outline: none;
}

.leaflet-control-search .search-button {
    display: none !important;
}