/* DJK Tile Map Styles */

.djk-tile-map-wrapper {
    position: relative;
}

#djk-map {
    background: #ffffff;
}

.tile-label {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 8px;
    font-weight: bold;
    color: #000;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none !important;
}

.djk-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 46, 0.95);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.djk-legend h4 {
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

.djk-legend-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-size: 12px;
}

.djk-legend-color {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tile popup styles */
.djk-tile-popup {
    padding: 10px;
    text-align: center;
}

.djk-tile-popup h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.djk-tile-popup img {
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 8px;
}
