/* Styles specific to the About Me window */
#about-window.finder-window {
    background-color: #ffffff; /* Solid white background */
    backdrop-filter: none; /* Remove inherited blur */
    -webkit-backdrop-filter: none; /* Remove inherited blur for Safari */
    /* Ensure no semi-transparent background color is inherited or re-declare if necessary */
    /* background-color: rgba(225, 225, 225, 0.6) is from .finder-window, ensure it's fully overridden */
    /* min-height: 300px; /* Example: specific height */
}

#about-window .window-content {
    padding: 30px; /* Specific padding for About Me content */
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 35px; 
}

.profile-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.15); 
    flex-shrink: 0; 
}

.profile-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.profile-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 1px 0; 
    color: #000;
    user-select: none; 
}

.profile-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.bio-section {
    display: flex;
    font-size: 13px;
    padding-left: 30px; 
    padding-right: 30px; 
}

.bio-label {
    color: #999; 
    margin: 0 10px 0 0;
    min-width: 40px; 
    font-weight: 500;
    user-select: none; 
}

.bio-text {
    color: #333;
    margin: 0;
    text-align: justify;
} 