* {
    margin: 0;
    border: none;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.content {
    padding: 0.5rem;
}

.page-container {
    height: 100vh;
    width: 100vw;
    display: flex;
}

.sidebar-container {
    height: 100vh;
    width: 300px;
}

.map-container {
    height: 100vh;
    width: calc(100vw - 300px);
}

.sb-details {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(300px - 1rem);
    font-size: 12px;
}

#map {
    height: 100%;
    width: 100%;
}

/*Modals*/
.modal-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    left: 0;
}

.modal-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-active {
    display: flex;
}

.modal {
    display: flex;
    flex-direction: column;
    width: 70vw;
    height: 70vh;
    /*background-color: #fff;*/
    /*border-radius: 4px;*/
    /*border: 1px solid #fff;
    padding: 1.5rem;*/
    z-index: 100;
    background-color: white;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 2rem 0;
}

.modal-title {
    margin-bottom: 0;
}

.modal-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
}

/*Tabs*/
.tabs {
    width: 100%;
    height: 100%;
}

.tab-list {
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    margin-bottom: 0;
}

.tab-list-item {
    display: inline-block;
    list-style: none;
    margin-bottom: -1px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}

.tab-list-active {
    /*background-color: white;*/
    /*border: solid #ccc;
    border-width: 1px 1px 0 1px;*/
    border-bottom: 2px solid blue;
}

.tab-content {
    height: calc(100% - 50px);
    overflow-y: scroll;
    background-color: rgba(128, 128, 128, 0.1);
}

.card-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.card-title {
    padding: 0.5rem;
}