/* Help Button */
.retro-help-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0078d4;
    color: white;
    font-family: "MS Sans Serif", sans-serif;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    border: 2px solid #005bb5;
    transition: transform 0.2s;
    z-index: 10;
}

.retro-help-button:hover {
    transform: scale(1.1);
}

/* Retro Dialog */
.retro-help-dialog {
    /* alternate positioning above the help button */
    bottom: 80px;
    left: 20px;
    transform: none;
    
    /* centered positioning */
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */

    width: 400px;
    background: linear-gradient(to bottom, #5e88c3, #9dc1ff);
    color: white;
    border: 2px solid #333;
    z-index: 10000;
    font-family: "MS Sans Serif", sans-serif;
    box-shadow: 4px 4px 0 #000;
    display: flex;
    flex-direction: column;
}

.retro-help-dialog {
    position: fixed;
    
}
.hidden {
    display: none;
}

/* Dialog Title Bar */
.dialog-title-bar {
    background: #005bb5;
    color: white;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.retro-close-button {
    position: absolute;
    top: 2px;
    right: 2px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
}

/* Dialog Content */
.dialog-content {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
}

/* Dialog Footer */
.dialog-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
