#helpDialog {

    width: 500px;
    max-width: 90vw;

    border: none;
    border-radius: 12px;

    padding: 0;

    box-shadow: 0 12px 32px rgba(0,0,0,0.3);

}

.help-header {

    background: #550e0e;

    color: white;

    font-size: 22px;

    font-weight: bold;

    padding: 18px 22px;

}

.help-body {

    padding: 24px;

    font-size: 16px;

    line-height: 1.6;

    color: #333;

}

.help-body h3 {

    margin-top: 20px;
    margin-bottom: 10px;

    color: #1f4f82;

}

.help-body p {

    margin-top: 0;
    margin-bottom: 16px;

}

.help-body ul {

    margin: 0;
    padding-left: 24px;

}

.help-body li {

    margin-bottom: 8px;

}

.help-footer {

    display: flex;

    justify-content: flex-end;

    padding: 18px 24px;

    border-top: 1px solid #e5e5e5;

    background: #f8f9fa;

}

#closeHelp {

    background: #1f4f82;

    color: white;

    border: none;

    border-radius: 6px;

    padding: 10px 20px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: background-color 0.2s ease;

}

#closeHelp:hover {

    background: #2d6cad;

}

#closeHelp:active {

    background: #163a60;

}