body {
    background: #e9eaed;
    font-family: Arial, sans-serif;
}
.profile-page {
    max-width: 1100px;
    margin: auto;
}

.profile-banner {
    height: 180px;
    background: linear-gradient(90deg, #2b2d42, #4a4e69);
    border-radius: 10px 10px 0 0;
}

.profile-header {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: white;
    border-radius: 0 0 10px 10px;
    margin-bottom: 20px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.profile-meta h1 {
    margin: 0;
}

.status {
    color: #666;
    margin: 5px 0;
}

.btn {
    padding: 6px 10px;
    background: #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: black;
    margin-right: 5px;
}

.btn.primary {
    background: #3b82f6;
    color: white;
}

.btn.danger {
    background: #ef4444;
    color: white;
}

.btn.disabled {
    background: #aaa;
    pointer-events: none;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.feed-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.friends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.friend {
    text-align: center;
}