/* Location Map Component Styles */

/* Leaflet popup customization */
.leaflet-popup-content {
    min-width: 200px;
}

/* Update coordinates button */
.update-coords-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 10px;
    cursor: pointer;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
}

.update-coords-btn:hover {
    background-color: #0b7dda;
}

.update-coords-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Permanent label styling */
.leaflet-tooltip.permanent-label {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #999;
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 500;
    font-size: 13px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.leaflet-tooltip.permanent-label::before {
    border-right-color: #999;
}
