 /* Wrapper for heading and help icon */
 .iafwzcai-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Heading Styling */
.iafwzcai-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Help Icon Wrapper */
.iafwzcai-help-icon-wrapper {
    position: relative;
    display: inline-block;
}

/* Help Icon Styling */
.iafwzcai-help-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    line-height: 14px;
    text-align: center;
    background-color: #5d666b8a;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 9px;
}

/* Tooltip Styling */
.iafwzcai-help-tooltip {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    /* text-align: center; */
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif !important;
    font-weight: normal !important;
}

/* Tooltip Arrow */
.iafwzcai-help-tooltip::after {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Tooltip Visibility on Hover */
.iafwzcai-help-icon-wrapper:hover .iafwzcai-help-tooltip {
    visibility: visible;
    opacity: 1;
}

.iafwzcai-help-tooltip span
{
    font-weight: normal !important;
    font-family: Arial, sans-serif !important;
}

/* ── Help dropdown button ── */
.iafwzcai-help-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.iafwzcai-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 26px;
    padding: 0 10px 0 8px;
    border-radius: 20px;
    background: #2271b1;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 26px;
    box-sizing: border-box;
    transition: background 0.2s;
}

.iafwzcai-help-btn:hover,
.iafwzcai-help-btn[aria-expanded="true"] {
    background: #135e96;
}

.iafwzcai-help-btn .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
}

.iafwzcai-help-btn-label {
    color: #fff;
    white-space: nowrap;
    line-height: 1;
}

.iafwzcai-help-copy-btn {
    margin-left: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    color: #a7aaad;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.iafwzcai-help-copy-btn:hover {
    color: #2271b1;
    border-color: #2271b1;
    background: #f0f6fc;
}

.iafwzcai-help-copy-btn.iafwzcai-copied {
    color: #00a32a;
    border-color: #00a32a;
    background: #f0faf0;
}

.iafwzcai-help-copy-btn svg {
    display: block;
    flex-shrink: 0;
}

.iafwzcai-help-copy-btn .iafwzcai-check-icon {
    display: none;
}

.iafwzcai-help-copy-btn.iafwzcai-copied .iafwzcai-copy-icon {
    display: none;
}

.iafwzcai-help-copy-btn.iafwzcai-copied .iafwzcai-check-icon {
    display: block;
}

.iafwzcai-help-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 99999;
}

.iafwzcai-help-dropdown[hidden] {
    display: none;
}

.iafwzcai-help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #1d2327;
    border-bottom: 1px solid #f0f0f1;
    transition: background 0.15s;
}

.iafwzcai-help-item:last-of-type {
    border-bottom: none;
}

.iafwzcai-help-item:hover {
    background: #f6f7f7;
    color: #1d2327;
    text-decoration: none;
}

.iafwzcai-help-item-icon {
    color: #2271b1;
    flex-shrink: 0;
}

.iafwzcai-help-item-text {
    display: flex;
    flex-direction: column;
}

.iafwzcai-help-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.iafwzcai-help-item-sub {
    font-size: 11px;
    color: #787c82;
    line-height: 1.3;
    margin-top: 1px;
}

.iafwzcai-help-version {
    text-align: center;
    font-size: 11px;
    color: #a7aaad;
    padding: 6px 14px;
    border-top: 1px solid #f0f0f1;
}