/* Page wrapper */

.profile-page {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 16px 24px;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #111827;
}

/* Header */

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #f0b4ff, #b56dff);
    display: block;
    object-fit: cover;
    overflow: hidden;
    margin-bottom: 16px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
}

/* Menu container (card) */

.profile-menu {
    margin-top: 16px;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

/* Common item styles */

.profile-item {
    width: 100%;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 16px;
    color: #111827;
    background: whitesmoke;
}

/* Left block (icon + title) */

.profile-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.profile-item-title {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Icon wrapper */

.profile-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon-inner {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make SVGs fill the icon square and align by center */

.profile-icon-inner svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Chevron */

.profile-item-chevron {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-right: 2px solid #c4c4c8;
    border-bottom: 2px solid #c4c4c8;
    transform: rotate(-45deg);
}