#map-streetview-marker-display-setting-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 11000;
    box-sizing: border-box;
}

#map-streetview-marker-display-setting-form {
    position: relative;
    z-index: 1;
    width: min(560px, 94vw);
    max-height: 88vh;
    background-color: #fff;
    padding: 20px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    overflow-anchor: none;
    box-sizing: border-box;
}

#map-streetview-marker-display-setting-form h3 {
    font-size: 20px;
    margin: 0 0 16px 0;
    color: #222;
    font-weight: 700;
}

.map-streetview-marker-display-setting-section {
    margin-bottom: 20px;
}

.map-streetview-marker-display-setting-description {
    margin: 0 0 12px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.map-streetview-marker-display-setting-fieldset {
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    padding: 14px 16px 12px 16px;
    margin: 0;
    background: #fff;
}

.map-streetview-marker-display-setting-legend {
    padding: 0 6px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.map-streetview-marker-display-setting-option-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.map-streetview-marker-display-setting-radio {
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
}

.map-streetview-marker-display-setting-option-label {
    cursor: pointer;
    line-height: 1.5;
}

.map-streetview-marker-display-setting-label-input-wrap {
    margin: 4px 0 0 26px;
}

.map-streetview-marker-display-setting-label-input {
    width: 100%;
    max-width: 360px;
    padding: 8px 9px;
    border: 1px solid #bbb;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 13px;
    background-color: #fff;
}

.map-streetview-marker-display-setting-label-input:focus {
    outline: none;
    border-color: #007B8A;
    box-shadow: 0 0 0 2px rgba(0, 123, 138, 0.14);
}

.map-streetview-marker-display-setting-label-input:disabled {
    background-color: #f4f4f4;
    color: #999;
    cursor: not-allowed;
}

.map-streetview-marker-display-setting-btn-done-footer {
    border: 1px solid #b8b8b8;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    min-width: 96px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.map-streetview-marker-display-setting-btn-done-footer:hover {
    border-color: #007B8A;
    color: #007B8A;
    background: #f3fbfc;
}

.map-streetview-marker-display-setting-footer-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.map-streetview-marker-display-setting-toast {
    position: absolute;
    left: 50%;
    bottom: 20%;
    z-index: 2;
    max-width: min(90vw, 360px);
    padding: 12px 18px;
    border-radius: 12px;
    background-color: #2d2d2d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.map-streetview-marker-display-setting-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-streetview-marker-display-setting-toast--error {
    background-color: #5c2020;
}

.map-streetview-marker-display-setting-toast[hidden] {
    display: none !important;
}
