 /* Wrapper for heading and help icon */
 .iafwzdesk-header-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Heading Styling */
.iafwzdesk-heading {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Help Icon Wrapper */
.iafwzdesk-help-icon-wrapper {
    position: relative;
    display: inline-block;
}

/* Help Icon Styling */
.iafwzdesk-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 */
.iafwzdesk-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 */
.iafwzdesk-help-tooltip::after {
    content: '';
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Tooltip Visibility on Hover */
.iafwzdesk-help-icon-wrapper:hover .iafwzdesk-help-tooltip {
    visibility: visible;
    opacity: 1;
}

.iafwzdesk-help-tooltip span
{
    font-weight: normal !important;
    font-family: Arial, sans-serif !important;
}

/* =============================================
   Admin Header — Help Dropdown Button
   ============================================= */

.iafwzdesk-plugin-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.iafwzdesk-help-wrap {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.iafwzdesk-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    height: 30px;
    padding: 1px 8px 2px 8px;
    line-height: 1;
}

.iafwzdesk-help-btn:hover,
.iafwzdesk-help-btn[aria-expanded="true"] {
    background: #135e96;
    color: #fff;
}

.iafwzdesk-help-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.iafwzdesk-help-btn-label {
    line-height: 1;
}

.iafwzdesk-help-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    padding: 4px 0;
}

.iafwzdesk-help-dropdown[hidden] {
    display: none;
}

.iafwzdesk-help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #1d2327;
    transition: background 0.15s;
}

.iafwzdesk-help-item:hover {
    background: #f6f7f7;
    color: #1d2327;
}

.iafwzdesk-help-item-icon {
    color: #2271b1;
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.iafwzdesk-help-item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.iafwzdesk-help-item-title {
    font-size: 13px;
    font-weight: 600;
    display: block;
}

.iafwzdesk-help-item-sub {
    font-size: 11px;
    color: #787c82;
    display: block;
}

.iafwzdesk-help-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #787c82;
    display: flex;
    align-items: center;
    border-radius: 3px;
    transition: background 0.15s;
    flex-shrink: 0;
}

.iafwzdesk-help-copy-btn:hover {
    background: #f0f0f1;
    color: #2271b1;
}

.iafwzdesk-help-copy-btn .iafwzdesk-icon-check {
    display: none;
}

.iafwzdesk-help-copy-btn.iafwzdesk-copied {
    color: #00a32a;
}

.iafwzdesk-help-copy-btn.iafwzdesk-copied .iafwzdesk-icon-copy {
    display: none;
}

.iafwzdesk-help-copy-btn.iafwzdesk-copied .iafwzdesk-icon-check {
    display: block;
}

.iafwzdesk-help-version {
    font-size: 11px;
    color: #b0b5ba;
    text-align: center;
    padding: 8px 14px 6px;
    border-top: 1px solid #f0f0f1;
    margin-top: 2px;
}