* {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.page-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #1b365d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
}

#employee-count {
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}

#header-title {
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}

#worker-toolbar {
    position: absolute;
    bottom: calc(50% - 138px);
    width: calc(50% - 102px);
    overflow: auto;
    height: 200px;
    background-color: transparent;
    padding: 0;
    transition: all 0.3s ease-in-out;
    right: -50%;
}

/* For Webkit-based browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #d0e1f9; /* Light blue for the track background */
}

/* Handle (thumb) */
::-webkit-scrollbar-thumb {
    background-color: #1b365d; /* Primary color for the thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    border: 2px solid #d0e1f9; /* Optional: Adds padding around the thumb */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #1b365d; /* Darken the thumb on hover */
}

#worker-toolbar.active {
    right: 0;
}

#worker-card-list-scroll {
    padding: 0 30px;
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#worker-card-list-scroll .worker-card {
    margin: 10px;
    display: flex;
    flex-direction: column;
    flex: none;
    align-items: baseline;
    width: 240px;
    height: 145px;
    border-radius: 12px;
    position: relative;
    padding: 12px 20px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.worker-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.worker-name {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    margin: 20px 0 0 0;
    color: #284975;
    font-weight: 500;
}
.worker-title {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
    color: #007cb9;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.worker-dash {
    width: 27px;
    height: 2px;
    background-color: #c31c4a;
}

.worker-image {
    width: 50px;
    height: 50px;
    border-radius: 99px;
}

.popup-content {
    text-align: center;
    font-size: 20px;
    color: #7a97ab;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 20px;
    font-weight: 800;
    height: 100px;
}
.popup-image {
    width: 50px;
    height: 50px;

    border-radius: 99px;
    overflow: hidden;
}

.mapboxgl-popup {
    max-width: 600px;
    font:
        12px/20px "Helvetica Neue",
        Arial,
        Helvetica,
        sans-serif;
}

.mapboxgl-popup-close-button {
    font-size: 20px;
}
