/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Feb 1, 2026, 10:40:32 AM
    Author     : LANES
*/

body {
    margin: 0;
    padding: 0;
}

.logo_light {
    font-family: "Trebuchet MS", sans-serif;
    font-style: normal;
    font-size: 1.4em;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.logo_bold {
    font-family: "Poetsen One", sans-serif;
    color: #fff;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.driver {
    color: #2e2e2e;
}
.diamond {
    background: linear-gradient(to bottom, red 48%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.icon-header {
    font-size: 36px;
}
.display-none {
    display: none;
}
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.mapboxgl-ctrl-logo {
    display: none !important;
}
.mapboxgl-ctrl-attrib {
    display: none !important; /* This hides the "i" and "OpenStreetMap" links */
}
.mapboxgl-popup {
    max-width: 200px;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
    align-self: center;
    border-bottom: none;
    border-top-color: #000;
}

.mapboxgl-popup-tip {
    border: 5px solid #0000;
}
.mapboxgl-popup-content {
    background: rgba(0,0,0,.50);
    color: #FFF;
    border: 1px solid #000;
    border-radius: 3px;
    box-shadow: 0 1px 2px #0000001a;
    padding: 5px 5px 4px;
    pointer-events: auto;
    position: relative;
    font-size: 11px;
}
.top {
    top: 0;
}
.bottom {
    bottom: 0;
}
.left {
    left: 0;
}
.right {
    right: 0;
}
.guest {
    color: #ccc !important;
}
#map-overlay {
    position: absolute;
    margin: 30vh auto;
    padding-right: 10px;
}
#map-overlay .center-me {
    color: yellow;
    font-size: 3rem;
    margin-top: 50px;
}
#map-overlay .ghost {
    color: yellow;
    font-size: 3rem;
    margin-top: 20px;
}
#map-overlay .settings {
    color: yellow;
    font-size: 3rem;
    margin-top: 20px;
}
#map-overlay .safe {
    color: yellow;
    font-size: 3rem;
    margin-top: 20px;
}
#map-overlay-speed {
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    position: absolute;
    padding: 20px;
}
#map-overlay-speed .myspeed {
    border: 4px solid red;
    border-radius: 100%;
    background-color: #FFF;
    height: 55px;
    width: 55px;
    line-height: 16px;
    text-align: center;
}
#map-overlay-speed p {
    margin: 0;
    padding: 0;
}
#map-overlay-speed .speed {
    font-weight: bold;
    font-size: 20px;
    padding-top: 14px;
}
#map-overlay-speed .kmh {
    font-weight: bold;
    font-size: 11px;
    color: #999;
}

/* point colors effect */
.marker_red {
    background-color: red;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    cursor: pointer;
    animation: 1.8s ease-out 0s infinite normal none running red;
    position: relative;
}
@keyframes red {
    0% {
        box-shadow: red 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}

.marker_cyan {
    background-color: cyan;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    animation: 1.8s ease-out 0s infinite normal none running cyan;
    position: relative;
}
@keyframes cyan {
    0% {
        box-shadow: cyan 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}
.marker_yellow {
    background-color: yellow;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    cursor: pointer;
    animation: 1.8s ease-out 0s infinite normal none running yellow;
    position: relative;
}
@keyframes yellow {
    0% {
        box-shadow: yellow 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}
.marker_green {
    background-color: lime;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    cursor: pointer;
    animation: 1.8s ease-out 0s infinite normal none running lime;
    position: relative;
}
@keyframes lime {
    0% {
        box-shadow: lime 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}
.marker_orange {
    background-color: tomato;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    cursor: pointer;
    animation: 1.8s ease-out 0s infinite normal none running tomato;
    position: relative;
}
@keyframes tomato {
    0% {
        box-shadow: tomato 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}
.marker_pink {
    background-color: deeppink;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    cursor: pointer;
    animation: 1.8s ease-out 0s infinite normal none running deeppink;
    position: relative;
}
@keyframes deeppink {
    0% {
        box-shadow: deeppink 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}
.marker_white {
    background-color: white;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    cursor: pointer;
    animation: 1.8s ease-out 0s infinite normal none running white;
    position: relative;
}
@keyframes white {
    0% {
        box-shadow: white 0px 0px 0px 0px;
    }
    70% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
    100% {
        box-shadow: rgba(100, 0, 0, 0) 0px 0px 0px 0.6rem;
    }
}