.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
}

.popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 320px;
    font-family: sans-serif;
    border: 1px solid #ddd;
    z-index: 9999;
    box-sizing: border-box;
}

.popup-inner {
    padding: 10px 10px 0;
}

.popup-title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.popup-desc {
    font-size: 14px;
    color: #444;
    text-align: center;
    line-height: 1.5;
}

.popup-actions {
    margin-top: 20px;
    display: flex;
    border-top: 1px solid #eee;
}

.popup-actions button {
    flex: 1;
    border: none;
    background: none;
    margin: 8px 0;
    padding: 6px;
    font-size: 13px;
    cursor: pointer;
}

.popup-actions button:hover {
    background: #f7f7f7;
}

.domain {
    font-weight: bold;
    color: #333333;
    margin-right: 2px;
}
