body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

#map-container {
    position: relative;
}

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

#coordinates {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
    border: none;
    z-index: 2;
}

#message {
    color: red;
}

#dot-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#location-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: red;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

#accuracy-circle {
    position: absolute;
    border: 1px solid red;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
    background-color: rgba(255, 0, 0, 0.1);
}

