/* Typing layout container, card and header */
.typing-test {
    margin: 0 auto;
    padding: 1rem;
}

/* Hide cursor during typing */
.typing-test.hide-cursor {
    cursor: none;
}

.typing-test.hide-cursor * {
    cursor: none !important;
}

.typing-card {
    background: var(--color-surface-primary);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-gray-200);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.typing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.typing-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--theme-text);
    text-align: center;
    font-family: var(--font-serif);
}

.verse-position {
    font-size: 0.75em;
    font-weight: 400;
    color: var(--theme-text-light);
    opacity: 0.7;
    margin-left: 0.5rem;
}


