/* Custom styles can go here */

#compassContainer {
    display: none; /* Hidden by default, shown on mobile via JS */
}

@media (max-width: 767.98px) {
    #compassContainer {
        display: block; /* Show on mobile */
    }
}

#compass {
    width: 200px;
    height: 200px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    margin: 20px auto;
    background-color: #f8f9fa;
    overflow: hidden;
}

.arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: bottom center;
    width: 0;
    height: 50%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 100px solid;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.1s ease-out;
}

.north-arrow {
    border-bottom-color: red;
    z-index: 10;
}

.car-arrow {
    border-bottom-color: blue;
    z-index: 5;
}