/* Welcome after registration — above verify-login overlay (10001) */
.welcome-after-registration-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10052;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.welcome-after-registration-modal-overlay.show {
    display: flex;
}

.welcome-after-registration-modal {
    position: relative;
    width: 480px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--Colors-Gray-White, white);
    border-radius: 24px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
}

.welcome-after-registration-modal.show {
    display: inline-flex;
}

.welcome-after-registration-modal-close {
    position: absolute;
    top: 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .welcome-after-registration-modal-close {
    right: 24px;
    left: auto;
}

[dir="ltr"] .welcome-after-registration-modal-close {
    left: 24px;
    right: auto;
}

.welcome-after-registration-container {
    width: 100%;
    padding: 48px 24px 40px;
    background: var(--Colors-Gray-White, white);
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: inline-flex;
    box-sizing: border-box;
}

.welcome-after-registration-header {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    display: flex;
    text-align: center;
}

.welcome-after-registration-icon {
    margin-bottom: 4px;
}

.welcome-after-registration-title {
    align-self: stretch;
    color: var(--Colors-Gray-Darkest, #111111);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.welcome-after-registration-subtitle {
    align-self: stretch;
    color: var(--Colors-Gray-Dark, #666666);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.welcome-after-registration-button {
    align-self: stretch;
    padding: 14px 24px;
    background: var(--Primary-500, #6A5D8B);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}

.welcome-after-registration-button-text {
    color: var(--Colors-Gray-White, white);
    font-size: 16px;
    font-weight: 600;
}

.welcome-after-registration-button:hover {
    filter: brightness(0.95);
}
