.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #1f2937;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

.leaflet-container {
    background-color: #030712;
}

.leaflet-bar {
    background: none;
    border: none;
    box-shadow: none;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
    background-color: #4a4a4a;
    background-image: linear-gradient(to top, #3a3a3a, #5a5a5a);
    color: #e0c996;
    text-shadow: 1px 1px 2px #000;
    border: 2px solid;
    border-color: #6b5b3a #3b2b0a #3b2b0a #6b5b3a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7), inset 0 0 3px rgba(255, 235, 180, 0.2);
    width: 34px;
    height: 34px;
    line-height: 30px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.leaflet-bar a:hover,
.leaflet-control-layers-toggle:hover {
    background-color: #5a5a5a;
    background-image: linear-gradient(to top, #4a4a4a, #6a6a6a);
    color: #fff8e1;
    border-color: #8c7349;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5), inset 0 0 5px rgba(255, 235, 180, 0.4);
}

.leaflet-bar a:active {
    transform: translateY(1px);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.8);
}

.leaflet-bar a:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.leaflet-bar a:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.leaflet-bar a+a {
    border-top: 2px solid #3b2b0a;
}

.leaflet-popup-content-wrapper {
    background: #fdf5e6;
    color: #4a2c0f;
    border: 3px solid #8c7349;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.leaflet-popup-content {
    margin: 15px 20px;
    line-height: 1.5;
    font-size: 14px;
}

.leaflet-popup-close-button {
    color: #4a2c0f !important;
    padding: 8px 8px 0 0;
    font-size: 18px;
}

.leaflet-popup-close-button:hover {
    color: #c82333 !important;
    background: none;
}

.leaflet-popup-tip {
    background: #8c7349;
    border: none;
    box-shadow: none;
}

.leaflet-control-layers {
    background: rgba(44, 44, 44, 0.85);
    border: 2px solid #6b5b3a;
    border-radius: 5px;
    color: #e0c996;
    padding: 10px;
}

.leaflet-control-layers-selector {
    color: #e0c996;
}

.leaflet-control-attribution {
    display: none;
}

.has-tooltip {
    position: relative;
    display: inline-block;
}

.has-tooltip .tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-family: sans-serif;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    transition: opacity 0.2s;
}

.has-tooltip:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Add this to the end of your intch.css file */
input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}
input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}
input[type="color"]::-moz-color-swatch {
    border: none;
    border-radius: 4px;
}