/* static/css/profile.css */

/* ===== Профиль ===== */
.profile-container {
    flex: 1;
    padding: 12px 20px;
    background: #141414;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 24px;
    width: 100%;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2b5278;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.profile-id {
    font-size: 13px;
    color: #7c7c7c;
}

.profile-regdate {
    font-size: 12px;
    color: #5a5a5a;
    flex-shrink: 0;
    margin-left: auto;
}

/* ===== Адаптив ===== */
@media (max-width: 600px) {
    .profile-container { padding: 8px 14px; }
    .profile-card { padding: 12px 16px; gap: 12px; }
    .profile-avatar { width: 40px; height: 40px; font-size: 17px; }
    .profile-name { font-size: 15px; }
    .profile-id { font-size: 12px; }
    .profile-regdate { font-size: 11px; }
}
