.popup {
    background: rgb(255, 248, 240);
    padding: 1.5rem;
    border-radius: 12px;
    border: 3px solid rgb(141, 92, 63);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    max-width: 420px;
    width: calc(100% - 2rem);
    box-sizing: border-box;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}
.map-popup {
    width: calc(100% - 4rem);
}
.button {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    margin: 0.5rem;
    font-weight: bold;
}
.button-keep {
    background-color: #3B9C4C;
}
.button-hide {
    background-color: #3B79D8;
}
.input-modern {
    width: 100%; max-width: 100%; box-sizing: border-box;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    font-family: 'Quicksand', sans-serif;
}
.input-modern:focus {
    outline: none;
    border-color: #8D5C3F;
    box-shadow: 0 0 0 2px rgba(141, 92, 63, 0.3);
}
.input-modern.invalid {
    border-color: red;
}
.form-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.error-message {
    color: #8D5C3F;
    font-weight: bold;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: rgba(141, 92, 63, 0.1);
    border-radius: 8px;
}
[x-cloak] { display: none !important; }

#map-placeholder {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

/* .map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    -webkit-mask-image: radial-gradient(ellipse, white 60%, transparent 100%);
    mask-image: radial-gradient(ellipse, white 60%, transparent 100%);
} */

/* .map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    max-width: 600px;
} */
.location-dropdown {
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: white;
    z-index: 1001;
}
.location-dropdown-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
}
.location-dropdown-item:hover {
    background-color: #f0f0f0;
}