* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #000;
}

#map {
    width: 100%;
    height: 100vh;
}

.coordinates-panel {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: black;
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

#coordInput {
    background: black;
    border: none;
    color: white;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    outline: none;
    font-family: monospace;
    width: auto;
    min-width: 200px;
}

#coordInput::placeholder {
    color: #888;
}

#goButton {
    background: black;
    border: 2px solid white;
    border-radius: 8px;
    padding: 8px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#goButton:hover {
    background: #222;
}

#goButton svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

@media (max-width: 1000px) {
    .coordinates-panel {
        padding: 6px 12px;
        bottom: 40px;
    }
    
    #coordInput {
        font-size: 14px;
        min-width: 180px;
        padding: 6px 10px;
    }
    
    #goButton svg {
        width: 18px;
        height: 18px;
    }
}