.me{
    flex: 1;
    max-width: 680px;
}
.container {
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    background-color: var(--fb-card-bg)
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.header p {
    font-size: 0.9rem;
    color: #65676b;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4e6eb;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.section-header a {
    font-size: 0.85rem;
    color: #1877f2;
    text-decoration: none;
}

.info-row {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
    transition: background-color 0.2s ease;
}

.info-row:hover {
    background-color: #333333;
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-row .label {
    font-size: 1rem;
    color: #ffffff;
}

.info-row .value {
    font-size: 1rem;
    color: #ffffff;
}

.info-row .icon {
    color: #65676b;
    font-size: 0.9rem;
    margin-left: 10px;
}

.profile-photo-row {
    align-items: center;
}

.profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
}

.info-link {
    text-decoration: none;
    color: #1877f2;
    font-size: 0.9rem;
    margin-top: 15px;
    display: block;
}

/* New styles for personal profile cards */
.profile-cards-container {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    padding: 20px 0;
}

.profile-card {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-card-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e4e6eb;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.profile-card-avatar.red {
    background-color: #d93025;
}

.profile-card-avatar.teal {
    background-color: #0b8066;
}

.profile-card-name {
    font-size: 1rem;
    color: #1c1e21;
}