.wbk_summaryStep__container {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    max-width: 672px;
    width: 100%;
}

.wbk_summaryStep__top {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.wbk_summaryStep__iconWrapper {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    background-color: #f0fdfc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    img {
        margin: 0;
    }
}

.wbk_summaryStep__icon {
    width: 48px;
    height: 48px;
}

.wbk_summaryStep__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    color: #111827;
    margin: 0;
}

.wbk_summaryStep__description {
    font-size: 16px;
    line-height: 1.5;
    color: #50575e;
    margin: 0;
}

.wbk_summaryStep__panel {
    background-color: #f0fdfc;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.wbk_summaryStep__subheading {
    font-size: 16px;
    font-weight: 500;
    color: #1d2327;
    margin: 0 0 8px;
    text-align: center;
}

.wbk_summaryStep__fieldBlock {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.wbk_summaryStep__shortcodeInputWrap {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.wbk_summaryStep__shortcodeInput {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 8px 44px 8px 12px;
    font-size: 16px;
    text-align: center;
    background: #fff;
}

.wbk_summaryStep__copyButton {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;

    &:hover {
        background: #f0fdfc;
    }
}

.wbk_summaryStep__copyIcon {
    width: 22px;
    height: 22px;
    display: block;
}

.wbk_summaryStep__fieldDescription {
    font-size: 12px;
    line-height: 16px;
    color: #6b7280;
    margin-top: 14px;
    text-align: center;
}

.wbk_summaryStep__howToLink {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #4b5563;
    text-decoration: underline;

    &:hover {
        color: #135e96;
    }
}

.wbk_summaryStep__closeButton {
    display: inline-flex;
    margin-top: 40px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    background-color: #14b8a9;
    border: 1px solid #14b8a9;
    color: #ffffff;
    transition: 0.3s all ease;
    cursor: pointer;

    &:hover {
        background-color: #0e9482;
        border-color: #0e9482;
        color: #ffffff;
    }
}
