#helpdocs-header {
    margin: 0 0 0 -20px !important;
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--helpdocs-color-header-bg) !important;
    padding: 20px 30px;
}

#helpdocs-header .logo {
    height: 32px !important;
    width: auto !important;
}

#helpdocs-header h1 {
    color: var(--helpdocs-color-header-font) !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
    font-size: 1.5rem;
    margin: 0 0 3px 0;
    padding: 0;
}

#helpdocs-subheader {
    margin: 0 0 0 -20px !important;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    background: white !important;
    color: #333 !important;
    padding: 20px 30px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, .1);
}

#helpdocs-subheader .subheader-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

#helpdocs-header .tabs-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
}

#helpdocs-header a.helpdocs-tab {
    background: transparent;
    color: var(--helpdocs-color-header-tab-link);
    border: none !important;
    border-radius: 6px;
    text-decoration: none;
    padding: 10px 15px !important;
    cursor: pointer;
    font-size: 12px !important;
    line-height: 1 !important;
}

#helpdocs-header a.helpdocs-tab-active,
#helpdocs-header a.helpdocs-tab:hover {
    background: var(--helpdocs-color-header-tab) !important;
    color: var(--helpdocs-color-header-font) !important;
}

#helpdocs-header a.helpdocs-tab-active {
    font-weight: 500;
}

#helpdocs-subheader h2.tab-title {
    font-size: 21px;
    font-weight: 400;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
}

#helpdocs-subheader a.tab-button {
    display: inline-block;
    padding: 8px 12px 6px !important;
}

#helpdocs-subheader .helpdocs-search-input {
    margin-bottom: 0 !important;
}

#helpdocs-subheader a.tab-button .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
    vertical-align: middle !important;
    margin: -2px 3px 0 -2px;
}

.helpdocs-tax-search,
.helpdocs-posttype-search {
    display: flex;
    gap: 10px;
}

.helpdocs-admin-screen #screen-meta,
.helpdocs-admin-screen #screen-meta-links {
    display: none;
}

#helpdocs-subheader .subheader-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Save Reminder */

#helpdocs-save-reminder {
    display: none;
    background: linear-gradient(90deg,#dc3545 0%,#b02a37 100%);
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(220,53,69,0.25);
    animation: helpdocsPulse 2s ease-in-out infinite;
}

@keyframes helpdocsPulse{
    0%{box-shadow:0 4px 14px rgba(220,53,69,0.25);}
    50%{box-shadow:0 6px 24px rgba(220,53,69,0.6);}
    100%{box-shadow:0 4px 14px rgba(220,53,69,0.25);}
}