/* About window styles */
#about-window {
    width: 450px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

#about-content {
    padding: 20px;
    line-height: 1.5;
    overflow-y: auto;
    flex-grow: 1;
    height: auto;
}

#about-content h2 {
    margin-top: 0;
    color: var(--header-text);
}

#about-content p {
    margin-bottom: 15px;
}