:root {
    --primary-green: #00C896;
    --secondary-green: #00A67D;
    --accent-beige: #E6C68A;
    --accent-gold: #D4A574;
    --dark-bg: #2F3349;
    --darker-bg: #1a1c2e;
    --white-cream: #F5F2ED;
    --text-dark: #2F3349;
    --text-light: #6B7280;

    /* Legacy colors (compatibility) */
    --bg-color1: #00C896;
    --bg-color2: #F5F2ED;
    --bg-color3: #E6C68A;
    --text1: #1a1c2e;
    --warning: #ff824d;

    --bg-dark: #08090c;

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-title: 1.8rem;
    --font-size-subtitle: 1.2rem;
    --font-size-body: 1rem;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Layout */
    --border-radius: 20px;
    --border-radius-small: 8px;
    --spacing-xs: 2px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 18px;
    --spacing-xl: 32px;

    /* Shadows */
    --shadow-light: 0 2px 8px rgba(22, 38, 36, 0.1);
    --shadow-medium: 0 4px 16px rgba(22, 38, 36, 0.15);
    --shadow-heavy: 0 8px 24px rgba(22, 38, 36, 0.2);

    --shadow-soft: 0 10px 30px rgba(47, 51, 73, 0.15);
    --shadow-strong: 0 20px 40px rgba(47, 51, 73, 0.25);
    --radius: var(--border-radius);


}

.shadow {
    border: 1px solid var(--white-cream);
    backdrop-filter: blur(5px) !important;
    background-color: rgba(82, 65, 44, 0.13) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-primary {
    color: var(--primary-green) !important;
}

.pointer {
    cursor: pointer;
}

.text-primary {
    color: var(--primary-green) !important;
}

html,
body {
    background: var(--white-cream);
    height: 100%;
    color: var(--text1);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;

    padding: 0px;
    font-size: 0.9em;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bg-color2);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bg-color1);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--text1);
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

span {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=email],
input[type=url],
select,
textarea {
    background: var(--bg-color2) !important;
    border-color: var(--bg-color2) !important;
    border-radius: var(--border-radius) !important;
    color: white !important;
    height: 48px !important;

}

.icon-hover {
    color: var(--text1) !important;
    transition: all ease-in-out 300ms;
    z-index: 10;
    cursor: pointer;
    margin: 2px;
    padding: 3px;
}


.icon-hover:hover {
    color: var(--white-cream) !important;
    background: var(--primary-green);
    border-radius: 100px;
}

.icon-hover-danger {
    color: var(--danger) !important;
    transition: all ease-in-out 300ms;
    z-index: 10;
    cursor: pointer;
    margin: 2px;
    padding: 3px;
}

.icon-hover-danger:hover {
    color: var(--white-cream) !important;
    background: var(--danger);
    border-radius: 100px;
}


.mini-ico {
    font-size: 18px;
    transform: translateY(-1px);
}

.rounded-10 {
    border-radius: 10px;
}

.rounded-20 {
    border-radius: 20px;
}

.leaflet-popup-content {
    margin: 0px !important;
    border-radius: 20px;
    width: unset !important;
}

.leaflet-popup-content-wrapper {
    padding: 0px !important;
}

.leaflet-popup-close-button {
    color: var(--white-cream) !important;

}