/* Popup transparency slider */
.popup-slider-container {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 6px;
}
.popup-slider {
    width: 100%;
    margin-top: 8px;
}

/* Reset transparency button */
.reset-transparency-control {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: fit-content;
    transform: translateX(-50%);
    background: #1f2937;
    border: 1px solid #1f2937;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.reset-transparency-control button {
    background: #1f2937;
    color: #e5e7eb;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    white-space: nowrap;
    min-width: 160px;
}

/* Chrome-only stylization */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    .reset-transparency-control button {
        font-size: 15px;
        font-weight: lighter;
    }
}

/* Safari-only stylization */
@supports (hanging-punctuation: first) {
    .popup-slider {
        -webkit-appearance: none;
        border-radius: 8px;
        height: 8px;
        background-color: #2274ff;
    }
    .popup-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 100%;
        background-color: #2274ff;
    }
}
