html,
body
{
    width:100%;
    height:100%;
    margin:0;
    padding: 0;
    overflow:hidden;
}

body
{
    background:#111;
}

#map
{
    position:fixed;
    top:56px;
    left:0;
    right:0;
    bottom:32px;
}

.footer
{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:32px;
    line-height:32px;
    text-align:center;
    z-index:99999;
    font-size:12px;
}

#mouse-coords
{
    position: fixed;
    bottom: 40px;
    right: 10px;

    background: rgba(0,0,0,0.8);
    color: #FFF;

    padding: 6px 12px;
    border-radius: 4px;

    font-size: 12px;
    z-index: 99999;
}

.custom-poi-icon
{
    background: transparent !important;
    border: none !important;
}

.custom-poi-icon i
{
    font-size: 18px !important;
    display: block !important;
    text-align: center;
    line-height: 18px;
}

.category-selected
{
    background-color: rgba(13,110,253,0.15) !important;
    border-left: 4px solid #0d6efd;
    font-weight: 600;
}

.category-selected:hover
{
    background-color: rgba(13,110,253,0.25) !important;
}

.poi-label
{
    background: transparent !important;
    border: none !important;
    pointer-events: none;
    white-space: nowrap;
}

.poi-label
{
    background: transparent !important;
    border: none !important;
    pointer-events: none;
}

.map-label
{
    color: white;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;

    text-shadow:
        0 0 2px #000,
        0 0 4px #000,
        0 0 6px #000;
}

.category-selected
{
    background-color: rgba(13,110,253,0.15) !important;
    border-left: 4px solid #0d6efd;
    font-weight: 600;
}

.category-selected:hover
{
    background-color: rgba(13,110,253,0.25) !important;
}

.grid-label
{
    background: transparent !important;
    border: none !important;
}

.grid-text
{
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;

    text-shadow:
        0 0 2px #000,
        0 0 4px #000,
        0 0 6px #000,
        0 0 8px #000;
}

.grid-text-center
{
    width: 60px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;

    text-shadow:
        0 0 2px #000,
        0 0 4px #000,
        0 0 6px #000;
}

.circle-toolbar {
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    border: 1px solid #444;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 99999;
    display: none; /* Oculto por padrão */
    gap: 15px;
}

.circle-toolbar button {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.circle-toolbar button:hover {
    color: #0d6efd;
}

/* Painéis Flutuantes de Desenho */
.draw-panel {
    position: fixed;
    top: 70px;
    left: 20px;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid #444;
    padding: 15px;
    border-radius: 8px;
    z-index: 99999;
    display: none;
    width: 240px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.color-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s;
}

.color-btn.active {
    border-color: #FFF;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.shape-toolbar {
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    border: 1px solid #444;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 99999;
    display: none;
    gap: 15px;
    align-items: center;
}

.shape-toolbar button {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.shape-toolbar button:hover {
    color: #0d6efd;
}

.radius-label {
    background: rgba(0,0,0,0.8) !important;
    border: 1px solid #555 !important;
    color: #FFF;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 0 2px #000;
}