﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wrapper {
    background: #ffffff;
    border-radius: 16px;
    width: 350px;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #eff3f4;
}

.header-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f1419;
    margin: 0;
    padding: 16px;
}

.row {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.row:hover {
    background-color: #f7f9f9;
}

.profile-picture {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 12px;
}

.info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name {
    font-weight: 700;
    font-size: 15px;
    color: #0f1419;
    margin: 0 0 2px 0;
}

.handle {
    color: #536471;
    font-size: 15px;
    margin: 0;
}

.follow-button {
    background-color: #0f1419;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 0 16px;
    height: 32px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.follow-button:hover {
    background-color: #272c30;
}

.show-more {
    padding: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.show-more:hover {
    background-color: #f7f9f9;
}

.show-more a {
    color: #1d9bf0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}
