:root {
    --wy-session-overlay: rgba(15, 23, 42, 0.46);
    --wy-session-panel: #ffffff;
    --wy-session-border: #dbe4f0;
    --wy-session-text: #172033;
    --wy-session-muted: #64748b;
    --wy-session-primary: #0f8faf;
    --wy-session-primary-hover: #0b7894;
    --wy-session-secondary: #eef4f8;
    --wy-session-secondary-hover: #e2ebf1;
    --wy-session-danger: #c2415d;
    --wy-session-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

[data-theme="light"] {
    --wy-session-overlay: rgba(15, 23, 42, 0.46);
    --wy-session-panel: #ffffff;
    --wy-session-border: #dbe4f0;
    --wy-session-text: #172033;
    --wy-session-muted: #64748b;
    --wy-session-secondary: #eef4f8;
    --wy-session-secondary-hover: #e2ebf1;
}

[data-theme="dark"] {
    --wy-session-overlay: rgba(2, 6, 23, 0.76);
    --wy-session-panel: #111827;
    --wy-session-border: #334155;
    --wy-session-text: #f1f5f9;
    --wy-session-muted: #a5b4c7;
    --wy-session-secondary: #1e293b;
    --wy-session-secondary-hover: #334155;
    --wy-session-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.wy-session-control-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: var(--wy-session-overlay);
    backdrop-filter: blur(8px);
}

.wy-session-control-panel {
    width: min(440px, 100%);
    max-height: min(640px, calc(100vh - 40px));
    overflow: auto;
    border: 1px solid var(--wy-session-border);
    border-radius: 8px;
    background: var(--wy-session-panel);
    color: var(--wy-session-text);
    box-shadow: var(--wy-session-shadow);
    padding: 24px;
}

.wy-session-control-kicker {
    margin: 0 0 8px;
    color: var(--wy-session-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.wy-session-control-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0;
}

.wy-session-control-message,
.wy-session-control-meta {
    margin: 12px 0 0;
    color: var(--wy-session-muted);
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.wy-session-control-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.wy-session-control-button {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 10px 16px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.wy-session-control-button:focus-visible {
    outline: 3px solid rgba(15, 143, 175, 0.28);
    outline-offset: 2px;
}

.wy-session-control-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.wy-session-control-button-primary {
    background: var(--wy-session-primary);
    color: #ffffff;
}

.wy-session-control-button-primary:hover:not(:disabled) {
    background: var(--wy-session-primary-hover);
}

.wy-session-control-button-secondary {
    background: var(--wy-session-secondary);
    color: var(--wy-session-text);
}

.wy-session-control-button-secondary:hover:not(:disabled) {
    background: var(--wy-session-secondary-hover);
}

.wy-session-control-button-danger {
    background: var(--wy-session-danger);
    color: #ffffff;
}

@media (max-width: 520px) {
    .wy-session-control-panel {
        padding: 20px;
    }

    .wy-session-control-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wy-session-control-button {
        width: 100%;
    }
}
