.gplaces-map-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.gplaces-map-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.gplaces-map-dialog {
    position: relative;
    width: min(900px, 90vw);
    max-height: 90vh;
    background: #fff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.gplaces-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    flex: 0 0 auto;
}
.gplaces-map-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}
.gplaces-map-close {
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0 6px;
}
.gplaces-map-hint {
    padding: 8px 14px;
    font-size: 12px;
    color: #666;
    flex: 0 0 auto;
}
.gplaces-map-canvas {
    flex: 1 1 auto;
    min-height: 50vh;
}
.gplaces-map-footer {
    padding: 10px 14px;
    border-top: 1px solid #eee;
    text-align: right;
    flex: 0 0 auto;
}
.gplaces-map-apply {
    padding: 6px 16px;
    background: #3C7B9F;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.gplaces-map-apply[disabled] {
    background: #aab8c0;
    cursor: not-allowed;
}
.gplaces-map-pin-btn {
    border: 1px solid #ccc;
    background: #f5f5f5;
    color: #555;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
}
.gplaces-map-pin-btn:hover {
    background: #e8e8e8;
    color: #222;
}
.gplaces-map-pin-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.input-group-btn > .gplaces-map-pin-btn {
    height: 100%;
}
.gplaces-pin-input {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group > .gplaces-pin-input + .input-group-btn > .gplaces-map-pin-btn {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
