#map {
    height: calc(100vh - (56px + 106px));
    cursor: default;
    width: 100%;
    z-index: 100;
}
.map-text {
    color: #7f7f7f;
    text-align: center;
    margin-bottom: 0rem !important;
}
.input-group{
    margin-bottom: 1rem;
}
@media (max-width: 570px) {
    .map-text {
        white-space: normal;
        font-size: medium;
    }
    .highlight {
        font-size: medium !important;
    }
    .map-container, .table-tool {
        margin-bottom: 3rem !important;
    }
    .input-group-text{
        font-size: small;
    }
    .input-group{
        margin-bottom: .5rem !important;
    }
    label, select{
        padding: .2rem .5rem !important;
    }
}
.highlight{
    color: #1350a4;
    font-weight: 800;
    font-size: 1.2rem;
}
.filter-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 10%;
    z-index: 500;
    margin: 1rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    border-radius: 2rem;
    gap: 1rem;
}
@media (max-width: 1230px) {
    .filter-container {
        flex-direction: column;
        align-items: flex-end;
        gap: .3rem;
    }
}
.table{
    font-size: .85rem;
}
.table-tool{
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 1rem;
    margin-bottom: 1.3rem;
    z-index: 502;
}
.project-list{
    width: 40vw;
    display: none;
}
.project-list.show{
    display: block;
}
.project-list.canvas{
    display: block;
    width: 100%;
    height: 100%

}
#offcanvas .offcanvas-body{
    padding-bottom: 0;
}
[data-control="project-table"] {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto; /* let first column auto-fill */
}

[data-control="project-table"] thead th {
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  z-index: 1;
}

[data-control="project-table"] tbody {
  display: block;
  max-height: calc(100vh - (38px + 16px + 92px + 71px + 70px));
  overflow-y: auto;
  scrollbar-gutter: stable;
}
[data-control="project-table"] thead,
[data-control="project-table"] tbody tr {
  display: table;
  width: 100%;
  table-layout: auto; /* matches the table */
}

[data-control="project-table"] th,
[data-control="project-table"] td {
  padding: 8px;
  text-align: left;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
}

[data-control="project-table"] td:nth-child(1),
[data-control="project-table"] th:nth-child(1) {
  width: auto;
}

[data-control="project-table"] td:nth-child(2),
[data-control="project-table"] th:nth-child(2) {
  width: 60px;
}
[data-control="project-table"] td:nth-child(3),
[data-control="project-table"] th:nth-child(3) {
  width: 150px;
}

.full-page{
    padding-left: 0px !important;
}
.filter{
    text-decoration: none;
}
.filter.active{
    text-decoration: underline;
}

.filter-list > .input-group label{
    font-weight: 700;
}
.filter-list > .input-group select{
  max-width: 20rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.filter-list > .input-group label, .filter-list > .input-group select{
    color: var(--primary-color);
    border: 0;
    border-radius: .8rem;
}
.map-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    margin-bottom: 1rem;
}
.custom-circle-marker {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
