#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    position: relative;
}

.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.map-controls .radio-group {
    margin: 0;
}

.map-controls .radio-group label {
    margin-right: 15px;
    color: #000;
    cursor: pointer;
}

.map-controls .radio-group input[type="radio"] {
    margin-right: 5px;
}

.coordinate-display {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    font-size: 12px;
    color: #333;
}

.marker-style {
    color: #ff5722;
}

.map-info {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #2196f3;
}

.map-info p {
    margin: 0;
    color: #1976d2;
    font-size: 14px;
}

/* Styling untuk draw controls */
.draw-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.draw-controls button,
.draw-controls select {
    display: inline-block !important;
    min-width: 120px;
    margin: 5px;
}

.draw-controls button:hover,
.draw-controls select:hover {
    background: #f0f0f0;
}

.draw-controls select:disabled {
    background: #e0e0e0;
    cursor: not-allowed;
}

/* Styling untuk indikator mode */
.coordinate-display.drawing-mode {
    background: rgba(255, 235, 59, 0.9) !important;
    color: #000 !important;
    border-left: 4px solid #ff9800;
    font-weight: bold;
}

.coordinate-display.normal-mode {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    border-left: 4px solid #2196f3;
}

/* Styling untuk tombol toggle drawing */
.drawing-active {
    background: #ffeb3b !important;
    color: #000 !important;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.6) !important;
}

/* Cursor feedback untuk mode drawing */
.ol-viewport.drawing-cursor {
    cursor: crosshair !important;
}

.ol-viewport.normal-cursor {
    cursor: pointer !important;
}
