/* Variables */
:root {
    --base-font-size: 17px;

    --body-background-color: rgb(250, 233, 203);
    --body-foreground-color: #333333;

    --primary-color: #FE5E00;
    --primary-contrast-color: #222222;
    --primary-highlight-color: #FF6E10;
    --primary-accent-color: #444444;

    --panel-background-color1: rgba(255,255,255, 1);
    --panel-background-color2: rgba(255,255,255, 1);
    --panel-background-filter: blur(40px);
    --panel-foreground-color: #002244;

    --field-background-color: #FFFFFF;
    --field-foreground-color: #333333;
    --field-border-color: #446688;
    --field-border-radius: 10px;
    --field-padding: 10px 8px;
    --field-select-padding: 8px 4px;
    --field-font-size: 15px;
    --field-invalid-color: #FFCCCC;

    --button-padding: 8px 26px;
    --button-padding-small: 8px 26px;
    --button-border-radius: 10px;
    --button-min-width: 145px;
    --button-outline-background-color: transparent;
    --button-outline-hover-color: #EEEEFF;
  
    --dialog-background-color: white;
    --dialog-background-filter: blur(40px);
    --dialog-foreground-color: black;
    --dialog-header-foreground-color: #ffffff;
    --dialog-header-background-color: #FE5E00;
    --dialog-header-background-filter: blur(40px);

    --shade-10: rgba(0,0,0,0.1);
    --shade-20: rgba(0,0,0,0.2);
    --shade-30: rgba(0,0,0,0.3);
    --shade-40: rgba(0,0,0,0.4);
    --shade-50: rgba(0,0,0,0.5);
    --shade-60: rgba(0,0,0,0.6);
    --shade-70: rgba(0,0,0,0.7);
    --shade-80: rgba(0,0,0,0.8);
    --shade-90: rgba(0,0,0,0.9);

    --glass-10: rgba(127,127,200,0.1);
    --glass-20: rgba(127,127,200,0.2);
    --glass-30: rgba(127,127,200,0.3);
    --glass-40: rgba(127,127,200,0.4);
    --glass-50: rgba(127,127,200,0.5);
    --glass-60: rgba(127,127,200,0.6);
    --glass-70: rgba(127,127,200,0.7);
    --glass-80: rgba(127,127,200,0.8);
    --glass-90: rgba(127,127,200,0.9);

    --highlight-10: rgba(255,255,255, 0.1);
    --highlight-20: rgba(255,255,255, 0.2);
    --highlight-30: rgba(255,255,255, 0.3);
    --highlight-40: rgba(255,255,255, 0.4);
    --highlight-50: rgba(255,255,255, 0.5);
    --highlight-60: rgba(255,255,255, 0.6);
    --highlight-70: rgba(255,255,255, 0.7);
    --highlight-80: rgba(255,255,255, 0.8);
    --highlight-90: rgba(255,255,255, 0.9);
}

html, body {
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-background-color);
    color: var(--body-foreground-color);
    font-size: var(--base-font-size);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
}

body.dark {
    background-color: #443333;
    color: var(--primary-color);
}

/* Default HTML tags */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--glass-30);
    outline: 1px solid slategrey;
    border-radius: 5px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--primary-color);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--primary-color);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--primary-color);
}

.radio-label {
    display: flex;
    align-items: center;
}

    .radio-label > input[type="radio"] {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .radio-label > span {
        padding-top: 4px;
    }


/* Backgrounds */

.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Animations */

.spin {
    animation: spin 4s linear infinite;
}

@keyframes spin { 
    100% { 
        transform: rotate(360deg); 
    } 
}


/* Positioning & Alignment */

.fill-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.align-content-left {
    display: flex;
    justify-content: left;
}

.align-content-right {
    display: flex;
    justify-content: right;
}

.align-right {
    text-align: right;
}

/* Dividers */
.divider-horizontal {
    height: 1px;
    border-top: 1px solid var(--shade-20);
    border-bottom: 1px solid var(--highlight-60);
}


/* Fields */

.field {
    padding: 10px 0;
    min-width: 130px;
}

.size-xs .field {
    min-width: 50px;
}


.field.small {
    min-width: 50px;
}

.field label {
    display: block;
    margin-bottom: 3px;
    font-size: var(--field-font-size);
    font-weight: 600;
}

.field input {
    background-color: var(--field-background-color);
    color: var(--field-foreground-color);
    border: 1px solid var(--field-border-color);
    padding: var(--field-padding);
    font-size: var(--base-font-size);
    border-radius: var(--field-border-radius);
    font-size: var(--field-font-size);
    width: 100%;
    box-shadow: 2px 2px 2px rgba(0,0,0, 0.5);
}

.dark .field input {
    color: #DDDDDD;
    background-color: #33333388;
}

.field input.invalid {
    background-color: var(--field-invalid-color);
}

.field textarea {
    background-color: var(--field-background-color);
    color: var(--field-foreground-color);
    border: 1px solid var(--field-border-color);
    padding: var(--field-padding);
    font-size: var(--base-font-size);
    border-radius: var(--field-border-radius);
    font-size: var(--field-font-size);
    width: 100%;
    box-shadow: 2px 2px 2px rgba(0,0,0, 0.5);
}

.dark .field textarea {
    color: #DDDDDD;
    background-color: #33333388;
}

.field textarea.invalid {
    background-color: var(--field-invalid-color);
}


.field input[type=checkbox] {
    box-shadow: none;
    width: 20px;
    height: 20px;
}

.field input[type=radio] {
    box-shadow: none;
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 5px;
}

.field select {
    background-color: var(--field-background-color);
    color: var(--field-foreground-color);
    border: 1px solid var(--field-border-color);
    padding: var(--field-select-padding);
    font-size: var(--base-font-size);
    border-radius: var(--field-border-radius);
    width: 100%;
    box-shadow: 2px 2px 2px rgba(0,0,0, 0.5);
    box-sizing: border-box;
}

.dark .field select {
    color: #DDDDDD;
    background-color: #33333388;
}

.field select.invalid {
    background-color: var(--field-invalid-color);
}




.field.single-image-field {
    display: inline-block;
    width: 300px;
    text-align: center;
}

.field.date-field select {
    width: 70px;
    padding-left: 2px;
    padding-right: 2px;
    text-align: center;
}

    .field.date-field select.day {
        width: 70px;
    }

    .field.date-field select.month {
        width: 70px;
    }

    .field.date-field select.hours {
        width: 60px;
        margin-left: 10px;
    }

    .field.date-field select.minutes {
        width: 60px;
    }

.field.choice-field .choices label {
    display: flex;
    align-items: center;
    font-weight: 100;
}

.field .search-results {
    position: absolute;
    left: 10px;
    right: 10px;
    background-color: white;
    z-index: 1;
    border: var(--glass-50);
    box-shadow: 2px 2px 2px rgba(0,0,0, 0.5);
    border-radius: 0 0 10px 10px;
}

    .field .search-results .search-results-item {
        cursor: pointer;
        padding: 10px 5px;
    }

        .field .search-results .search-results-item:hover {
            background-color: var(--glass-10);
        }

/* Boxes & Containers */

.button-box {
    padding: 25px 0 10px 0;
}

.button-box .left {
    
    text-align: left;
}

.button-box .right {
    float: right;
    text-align: right;
}

    .button-box .left .btn-primary, .button-box .right .btn-primary, .button-box .left .btn-outline-primary, .button-box .right .btn-outline-primary {
        width: auto;
        display: inline-block;
    }


/* Shadows */

.shadow {
    box-shadow: 0 0 20px rgba(0,0,0, 0.3);
}


/* Toast notifications */

#toast-area {
    position: fixed;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100000;
}

.toast-notification-row {
    margin-bottom: 10px;
}

.toast-notification {
    display: inline-block;
    max-width: 60vw;
    padding: 10px 30px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

    .toast-notification.warning {
        background-color: #ca9709;
    }

    .toast-notification.error {
        background-color: #CC4444;
    }

    .toast-notification.success {
        background-color: #1fad1f;
    }

    .toast-notification ion-icon {
        margin-right: 10px;
    }



/* Buttons */

.btn-primary {
    transition: 0.5s;
    padding: var(--button-padding);
    color: var(--primary-color);
    background-color: var(--primary-contrast-color);
    border-radius: var(--button-border-radius);
    border: none;
    cursor: pointer;
}

.size-xs .btn-primary, .size-sm .btn-primary, .size-md .btn-primary {
    padding: var(--button-padding-small);
}

.btn-primary:hover {
    color: var(--primary-contrast-color);
    background-color: var(--primary-highlight-color);
}

.btn-primary .centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-primary .centered ion-icon {
        font-size: 28px;
    }

        .btn-primary .centered ion-icon.left {
            margin-right: 5px;
        }

        .btn-primary .centered ion-icon.right {
            margin-left: 5px;
        }

.btn-primary.wide {
    width: calc(2 * var(--button-min-width));
}

.btn-primary.small {
    padding: 3px 15px;
    min-width: calc(var(--button-min-width) / 2);
}

.btn-primary.success {
    border: 1px solid #44AA44;
    background-color: #44AA44;
}

    .btn-primary.success:hover {
        background-color: #44FF44;
    }

.btn-primary.danger {
    border: 1px solid #AA4444;
    background-color: #AA4444;
    color: white;
}

    .btn-primary.danger:hover {
        background-color: #FF4444;
    }

.btn-primary:disabled {
    background-color: var(--glass-20);
    color: var(--glass-80);
}

.btn-primary.full-width, .size-xxs .btn-primary.full-width-mobile, .size-xs .btn-primary.full-width-mobile, .size-sm .btn-primary.full-width-mobile {
    width: 100%;
    margin-bottom: 10px;
}

.btn-primary .material-symbols-outlined {
    margin-left: -10px;
    margin-top: -1px;
    padding-right: 7px;
}

.dark .btn-primary {
    background-color: var(--primary-color);
    color: black;
}

.dark .btn-primary:disabled {
    background-color: var(--glass-20);
    color: black;
}


.btn-outline-primary {
    transition: 0.5s;
    padding: var(--button-padding);
    background-color: var(--button-outline-background-color);
    color: var(--primary-contrast-color);
    border: 1px solid var(--primary-contrast-color);
    border-radius: var(--button-border-radius);
    /* min-width: var(--button-min-width); */
    cursor: pointer;
}

.dark .btn-outline-primary {
    color: #DDDDDD;
}

.size-xs .btn-outline-primary, .size-sm .btn-outline-primary, .size-md .btn-outline-primary {
    padding: var(--button-padding-small);
}

.btn-outline-primary:hover {
    background-color: var(--button-outline-hover-color);
}

.dark .btn-outline-primary:hover {
    background-color: #888888;
}

.btn-outline-primary .centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-outline-primary .centered ion-icon {
        margin-left: -10px;
        font-size: 28px;
        margin-right: 5px;
    }

.btn-outline-primary.wide {
    width: calc(2 * var(--button-min-width));
}

.btn-outline-primary.full-width, .size-xxs .btn-outline-primary.full-width-mobile, .size-xs .btn-outline-primary.full-width-mobile, .size-sm .btn-outline-primary.full-width-mobile {
    width: 100%;
    margin-bottom: 10px;
}

.btn-outline-primary .material-symbols-outlined {
    margin-left: -10px;
    margin-top: -1px;
    padding-right: 7px;
}

.btn-link {
    display: flex;
    border: none;
    padding: 5px 0;
    background-color: transparent;
    color: var(--primary-color);
    font-size: var(--base-font-size);
    cursor: pointer;
    align-items: center;
}

    .btn-link:hover {
        color: var(--primary-highlight-color);
    }

    .btn-link ion-icon {
        margin-right: 10px;
    }

.btn-custom {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

    .btn-custom:hover {
        color: black;
    }


/* Scrolling */
.scrollbox-vertical {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}

.scrollbox-horizontal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: auto;
}

.scrollbox-both {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: auto;
    overflow-y: auto;
}


/* Text styles */

.bold {
    font-weight: 600;
}

.light {
    font-weight: 100;
}

.italic {
    font-style: italic;
}


/* Spacing */
.padded {
    padding: 15px;
}

.padded-double {
    padding: 30px;
}

.padded-above {
    padding-top: 15px;
}

.margin-left {
    margin-left: 8px;
}

.margin-right {
    margin-right: 8px;
}


/* Panels */
.panel {
    background-color: var(--panel-background-color1);
    border-radius: 15px;
    max-width: 600px;

    background-color: #FFFFFFBB;
    backdrop-filter: blur(20px);

    max-height: 80vh;
    overflow-y: auto;
}

.dark .panel {
    background-color: #222222;
}

.selection-panel {
    transition: 0.3s;
    display: flex;
    border: 1px solid #888888;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

    .selection-panel .icon {
        display: flex;
        flex: 90px 0 0;
        justify-content: center;
        align-items: center;
        color: var(--primary-color);
    }

        .selection-panel .icon .material-symbols-outlined {
            font-size: 40px;
        }

    .selection-panel .text {
        padding: 10px 10px 10px 0;
    }

    .selection-panel.selected, .selection-panel.selected:hover {
        background-color: var(--primary-color);
        color: black;
    }

        .selection-panel.selected .icon {
            color: black;
        }

    .selection-panel:hover {
        background-color: var(--primary-accent-color);
        color: white;
    }

/* Headers */
.panel-header {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.content-header {
    color: var(--glass-30);
    font-size: 36px;
    margin-top: 30px;
    font-weight: 600;
}

/* Footers */
.panel-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #CCCCCC;
}

    .dark .panel-footer {
        border-top: 1px solid #333344;
    }

/* Nav Bar */
.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--primary-color);  
    padding: 5px;
    box-sizing: border-box; 
}

    .navbar .btn-custom {
        color: white;
        height: 40px;
    }

    .navbar .btn-custom .material-symbols-outlined {
        font-size: 38px;
    }

.size-xs .mobile-sidebar, .size-sm .mobile-sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 90%;
    z-index: 1;
}

.size-xs .mobile-sidebar.open, .size-sm .mobile-sidebar.open {
    display: block;
}

.sidebar-panel {
    background-color: rgba(255,255,255, 0.8);
    backdrop-filter: blur(20px);
    position:absolute;
    top:15px;
    left:15px;
    right:15px;
    bottom:15px;
    overflow:hidden;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0, 0.3);
}

.size-xs .sidebar-panel, .size-sm .sidebar-panel {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
}


/* Side Navigator */
side-navigator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--shade-10);
}

.side-navigator {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-right: 1px solid var(--shade-10);
}

    .side-navigator .navigation-items {
        flex: 1;
    }

        .side-navigator .navigation-items .navigation-item {
            display: flex;
            background-color: transparent;
            border-bottom: 1px solid var(--shade-10);
            padding: 20px;
            align-items: center;
            cursor: pointer;
        }

            .side-navigator .navigation-items .navigation-item .navigation-item-icon {
                font-size: 32px;
                margin-right: 15px;
            }

            .side-navigator .navigation-items .navigation-item .material-symbols-outlined {
                font-size: 32px;
                margin-right: 15px;
            }

            .side-navigator .navigation-items .navigation-item .navigation-item-caption {
                font-size: 18px;
            }

            .side-navigator .navigation-items .navigation-item.selected {
                color: var(--primary-highlight-color);
                font-weight: 600;
            }

                .side-navigator .navigation-items .navigation-item.selected .navigation-item-icon {
                    color: var(--primary-highlight-color);
                }

            .side-navigator .navigation-items .navigation-item:hover {
                background-color: var(--glass-10);
            }

    .side-navigator .action-items {
        flex: 1;
        display: flex;
        flex-direction: column-reverse;
        padding: 10px;
        gap: 10px;
    }

        .side-navigator .action-items .action-item {
            display: flex;
            background-color: var(--highlight-20);
            border: 1px solid var(--shade-10);
            padding: 10px;
            align-items: center;
            cursor: pointer;
            border-radius: 10px;
        }

            .side-navigator .action-items .action-item .action-item-icon {
                font-size: 32px;
                margin-right: 15px;
            }

            .side-navigator .action-items .action-item .action-item-caption {
                font-size: 18px;
                font-weight: 600;
            }

            .side-navigator .action-items .action-item:hover {
                background-color: var(--highlight-30);
            }


/*
    Map element
*/

.mapbox-map {
    height: 100%;
    width: 100%;
    color: white;
}

    .mapbox-map .marker {
        width: 40px;
        height: 60px;
        background-color: black;
        clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
        text-align: center;
    }

        .mapbox-map .marker ion-icon {
            font-size: 32px;
            margin-top: 3px;
        }


    .mapbox-map .round-marker {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: black;
        border-radius: 25px;
    }

        .mapbox-map .round-marker ion-icon {
            font-size: 30px;
        }

    .mapbox-map .square-marker {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: black;
    }

        .mapbox-map .square-marker ion-icon {
            font-size: 26px;
        }


/* 
    Dialogs 

*/

.dialogs-content {
    
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 0.3);
    backdrop-filter: blur(20px);

    justify-content: center;
    align-items: center;

    z-index: 100;
}

.app-body .dialogs-content {
    background-color: rgba(0,0,0, 0.8);
    backdrop-filter: none;

    z-index: 200;
}

.dialog-body {
    color: var(--panel-foreground-color);
    background-color: var(--dialog-background-color);
}

.dialog-body.dark {
    background: none;
    background-color: #444444DD;
    color: #DDDDDD;
}

.dialog-div-body {
    width: 100%;
    color: var(--panel-foreground-color);
    background-color: var(--dialog-background-color);
}

.dark .dialog-div-body {
    background: none;
    background-color: #444444DD;
    color: #DDDDDD;
}

dialog-frame {
    flex: 1;
    
    position: fixed;
    min-height: 200px;
    min-width: 300px;
    max-width: 100%;
    max-height: 100%;
    border: 1px solid var(--dialog--header-background-color);
    border-radius: 5px;

    box-shadow: 0px 0px 40px rgba(0,0,0, 0.7);
}

    .dialog-frame-header {
        position: relative;
        background-color: var(--dialog-header-background-color);

        backdrop-filter: var(--dialog-header-background-filter);
        -webkit-backdrop-filter: var(--dialog-header-background-filter);

        padding: 8px 10px;
        color: var(--dialog-header-foreground-color);
        font-weight: 600;
        height: 40px;
        box-sizing: border-box;
    }

    .dialog-frame-header .dialog-frame-header-controls {
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 0;
    }

            .dialog-frame-header .dialog-frame-header-controls ion-icon {
                margin-left: 8px;
                margin-top: 7px;
                font-size: 24px;
                vertical-align: middle;
            }

    .dialog-frame-content-div {
        display: flex;
        top: 40px;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0 0 5px 5px;

        overflow: auto;
    }


    .dialog-frame-content {
        display: flex;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0 0 5px 5px;
    }

    .dialog-frame-content .dialog-frame-iframe {
        border: none;
        flex: 1;
    }


/* 
    Toolbar
*/

.toolbar {
    background-color: var(--primary-color);
    padding: 10px 20px;
    box-shadow: 3px 3px 3px rgba(0,0,0, 0.5);
    border-radius: 15px;
}

    .toolbar .field input[type="text"] {
        box-shadow: inset 0 0 3px rgba(0,0,0, 0.3);
        background-color: #FAFAFA;
        border: 1px solid #DDDDDD;
    }

    .toolbar .field input[type="text"]::placeholder {
        color: #AAAAAA;
    }

    .toolbar .field select {
        box-shadow: inset 0 0 3px rgba(0,0,0, 0.3);
        background-color: #FAFAFA;
        border: 1px solid #DDDDDD;
    }


/* 
    Header bar
*/

.header-bar {
    background-color: white;
    padding: 30px;
    border: 1px solid black;
    box-shadow: 3px 3px 3px rgba(0,0,0, 0.5);
}

    .header-bar .title {
        font-size: 36px;
        font-weight: 600;
        text-transform: uppercase;
    }


/* 
    Content panel
*/

.content-panel {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0,0,0, 0.2);
}

    .dark .content-panel {
        background-color: #222233;
        color: #AAAAAA;
    }

    .content-panel .title {
        font-size: 36px;
        font-weight: 600;
        text-transform: uppercase;
    }


/* 
    Items
*/

.item {
    background-color: white;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 6px 6px 6px rgba(0,0,0, 0.3);
    margin-top: 20px;
    border: 1px solid #AAAAAA;
}

    .item.clickable {
        cursor: pointer;
    }

    .item.clickable:hover {
        background-color: var(--glass-10);
    }

    .item.selected {
        background-color: var(--primary-color);
        color: var(--primary-contrast-color);
    }

.dark .item {
    background-color: #222222;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.dark .item.selected {
    background-color: var(--primary-color);
    color: var(--primary-contrast-color);
}

.action-item {
    transition: 0.5s;
    display: flex;
    padding: 10px;
    background-color: white;
    cursor: pointer;
    align-items: center;
    border: 1px solid #CCC;
    margin-bottom: 10px;
}

    .action-item:hover {
        transform: scale(1.03);
        box-shadow: 12px 6px 10px rgba(0,0,0, 0.1);
    }

    .action-item .material-symbols-outlined {
        font-size: 28px;
        color: var(--primary-accent-color);
        margin-right: 20px;
    }

    .dark .action-item {
        background-color: #222233;
        border: 1px solid black;
    }


/*
    Logo
*/

.logo {
    background-color: var(--primary-color);
    display: flex;
    height: 110px;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

    .logo-header {
        font-weight: 900;
        font-size: 52px;
        font-weight: 900;
        font-family: sans-serif;
    }

    .logo-footer {
        font-weight: 900;
        text-transform: uppercase;
    }




/*
    Map markers
*/

.complex-map-marker {
    color: black;
    
    
    border: 1px solid black;
    display: flex;
}

    .complex-map-marker .left {
        background-color: var(--primary-color);
        padding: 10px;
        width: 200px;
    }

    .complex-map-marker .right {
        width: 50px;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .complex-map-marker .title {
        color: white;
        font-size: 22px;
    }

    .complex-map-marker .city {
        font-size: 16px;
    }

    .complex-map-marker .indicator {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }

        .complex-map-marker .indicator.green {
            background-color: lime;
        }

        .complex-map-marker .indicator.orange {
            background-color: orange;
        }

        .complex-map-marker .indicator.red {
            background-color: red;
        }


/*
    Page elements
*/

.user-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background-color: #222222;
    color: #FFF;
    cursor: pointer;
}

    .user-display:hover {
        background-color: #444444;
    }

    .user-display .material-symbols-outlined {
        margin-right: 5px;
    }

.dark .user-display {
    background-color: #333344;
}

.user-display.impersonated {
    background-color: red;
}