/* Quick light-theme overrides for the virtual keyboard container */
.simple-keyboard {
    background-color: var(--panel-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 0 0 12px 12px !important;
    font-family: 'Rajdhani', sans-serif !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05) !important;
    max-width: 800px;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.hg-button {
    background: #f8fafc !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    height: 50px !important;
}
.hg-button:active {
    background: var(--primary-blue) !important;
    color: white !important;
}

/* CRITICAL FIX: Tell the browser what to do when an element is hidden */
.hidden {
    display: none !important;
}