/* Space Name Display in Header */
.title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.space-name-display {
    position: absolute;
    top: 8px;
    right: 50px;
    /* Changed from 12px to 8px */
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
    z-index: 100;
    text-align: right;
    /* Align text to the right */
}