.help-dialog-container {
    width: calc(100% - 1rem);
    position: fixed;
    top: calc(50% - 2.5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    font-family: sans-serif;
    z-index: 9999;
    display: none;
    min-width: var(--widget-min-width);
    max-width: var(--widget-max-width);
    width: calc(100% - 1rem);    
}

.help-top {
    height: 3.5rem;
    background: transparent;
    border: none;
    position: relative;
}

.help-close-button {
    padding: 0;
    margin-top: 2rem;
    left: calc(50% - 1.25rem);
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    transition: none;
    box-shadow: none;
    position: fixed;
    font-size: var(--font-medium, 1.5rem);
    font-weight: bold;
    line-height: 1.5rem;
    text-align: center;
    border-radius: 50%;
    border: 3.5px solid #eaeaea;
    z-index: 10001;
    box-shadow: var(--shadow, 0 2px 7px rgba(0,0,0,0.16));
}
.help-close-button:hover {
    background-color: #222;
    color: #fff;
}

.help-middle {
    padding-top: 1rem;
    border: 0.125rem solid #aaa;
    border-bottom: none;
    border: 1rem solid #fff;
    background: white;
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
    overflow-y: auto;
    height: 37rem;
    position: relative;
}

.help-footer {
    border: 0.125rem solid #aaa;
    border-top: none;
    border: 1rem solid #fff;
    border-radius: 0 0 0.5rem 0.5rem;
    background: #f9f9f9;
    padding: 1rem 1rem 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: bold;
    text-align: center;
    color: #333;
    height: 1.5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.help-loader {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #555;
}

.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.help-site-list {
    padding: 0 0.6rem 0 0.6rem;
}

.help-site-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fafdfe;
    border: 1.2px solid #e0e8ef;
    border-radius: 0.62rem;
    box-shadow: 0 2px 10px rgba(0,139,163,0.06);
    margin-bottom: 1.05rem;
    padding: 1rem 1.2rem 1rem 1rem;
    transition: box-shadow 0.17s;
    gap: 1.1rem;
}
.help-site-card:last-child {
    margin-bottom: 0.4rem;
}
.help-site-card:hover {
    box-shadow: 0 6px 22px rgba(0,139,163,0.11);
    border-color: #008ba3;
}

.help-site-details {
    flex: 1;
    min-width: 0;
}

.help-site-title {
    font-size: 1rem;
    font-weight: 700;
    color: #008ba3;
    display: block;
    margin-bottom: 0.13rem;
}
.help-site-desc {
    font-size: 0.97rem;
    color: #444;
    margin-bottom: 0.25rem;
    display: block;
}
.help-site-instructions {
    font-size: 0.93rem;
    margin: 0.18rem 0 0 1.15rem;
    padding: 0;
    color: #6b6b6b;
    list-style: disc;
}
.help-go-btn {
    flex-shrink: 0;
    align-self: flex-start;
    padding: 0.48rem 1.25rem;
    background: #008ba3;
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 1.5px 7px rgba(0,139,163,0.10);
    cursor: pointer;
    margin-left: 0.8rem;
    margin-top: 0.08rem;
    transition: background 0.18s;
}
.help-go-btn:hover { background: #005f6b; }
.help-header {
    text-align: center;
}

.help-header h2 {
    margin: 0 0 0.18em 0;
    font-size: 1.09rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #008ba3;
    text-align: center;
}

.help-header p {
    margin: 0;
    font-size: 0.99rem;
    color: #383838;
    text-align: center;
}

.help-header b,
.help-header small {
    text-align: center;
    display: block;
    margin: 0 auto;
}