/* Container */
#pmo-map-container {
    position: relative;
    border: 1px solid #ccc;
    background: #f0f0f0;
}

/* Fullscreen */
#pmo-map-container.pmo-fullscreen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    z-index: 999999;
    background: white;
    margin: 0; padding: 0;
    border: none;
}

#pmo-map {
    width: 100%; height: 500px; background: #ddd;
}
#pmo-map-container.pmo-fullscreen #pmo-map {
    height: 100% !important; width: 100% !important;
}

/* Controls */
#pmo-controls {
    position: absolute; top: 10px; right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px; border: 1px solid #999;
    z-index: 1000; font-size: 12px;
}
.pmo-ctrl-group { margin-bottom: 8px; }
.pmo-ctrl-group label { display: block; cursor: pointer; }

/* Popup (Default Style) */
.pmo-popup {
    position: absolute;
    background-color: white;
    border: 1px solid #666;
    padding: 10px;
    bottom: 12px;
    left: -50px;
    min-width: 200px;
    display: none;
    z-index: 2000;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}
#pmo-popup-closer {
    text-decoration: none; position: absolute; top: 2px; right: 6px;
    color: #000; font-weight: bold;
}

/* Compass (Simple Grid) */
.pmo-section-title {
    margin: 20px 0 10px;
    font-size: 16px;
    font-weight: bold;
    border-left: 4px solid #0068b7;
    padding-left: 10px;
}

#pmo-compass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}
.pmo-compass-cell {
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 12px;
    background: #fff;
}