:root {
  --primary: #6366f1;
  --primary-dark: #4f52e0;
  --primary-light: #8183f5;
  --secondary: #10b981;
  --accent: #ec4899;
  --bg: #0a0c14;
  --bg-light: #1a1d2e;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --card-bg: rgba(30, 35, 50, 0.8);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 12px 40px rgba(99, 102, 241, 0.2);
  --fab-bg: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --fab-color: white;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #1e1f3a, var(--bg));
}

#app {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
  overflow: hidden;
}

body.chat-fullscreen #app {
  max-width: 100%;
}

body.chat-fullscreen .app-header,
body.chat-fullscreen .bottom-nav {
  display: none;
}

body.chat-fullscreen .content-area {
  margin-bottom: 0;
  height: 100vh;
}

body.chat-fullscreen .chat-window {
  height: 100vh;
  border-radius: 0;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.glass-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.loading {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading.hidden { display: none; }
.spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--glass);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* Auth */
.auth-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-card {
  width: 100%;
  padding: 30px 20px;
  color: var(--text);
  max-height: 90vh;
  overflow-y: auto;
}
.logo {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
}
.tab-btn.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.auth-form { display: none; }
.auth-form.active { display: flex; flex-direction: column; gap: 15px; }

.input-field {
  display: flex;
  align-items: center;
  background: var(--glass);
  border-radius: 30px;
  padding: 5px 20px;
  border: 1px solid var(--border);
}
.input-field i { color: var(--text-secondary); margin-right: 10px; }
.input-field input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 0;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}
.input-field input::placeholder { color: var(--text-secondary); }

.file-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.file-input-group label {
  cursor: pointer;
  background: var(--glass);
  padding: 12px;
  border-radius: 30px;
  text-align: center;
  border: 1px dashed var(--border);
}
.file-input-group input[type="file"] { display: none; }

.preview-container {
  position: relative;
  max-width: 200px;
  margin-top: 10px;
}
#dp-preview { width: 100%; border-radius: 10px; }
.btn-small {
  position: absolute;
  bottom: 5px; right: 5px;
  background: var(--primary);
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--glass-hover);
}

.form-message { text-align: center; font-size: 0.9rem; min-height: 20px; color: var(--accent); }

.ssn-card {
  margin-top: 20px;
  text-align: center;
  background: var(--glass);
  border-radius: 20px;
  padding: 20px;
}
.ssn-card h2 { font-size: 1.8rem; letter-spacing: 2px; margin: 10px 0; }

/* Main app */
.main-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  margin: 10px;
  z-index: 10;
}
.logo-small { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn-icon { background: none; border: none; color: var(--text); font-size: 1.2rem; cursor: pointer; }

.content-area {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  scroll-behavior: smooth;
  margin-bottom: 70px;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  margin: 10px;
  background: rgba(20, 25, 40, 0.9);
  backdrop-filter: blur(12px);
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  z-index: 100;
}
.nav-item {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}
.nav-item span { font-size: 0.7rem; }
.nav-item.active { color: var(--primary); }

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--fab-bg);
  color: var(--fab-color);
  border: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
  cursor: pointer;
  z-index: 200;
  transition: var(--transition);
}
.fab:active {
  transform: scale(0.9);
}
.fab.hidden {
  display: none;
}

/* Badges */
.verified-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #1d9bf0;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  margin-left: 5px;
}
.owner-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: gold;
  border-radius: 50%;
  color: black;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  margin-left: 5px;
}

/* Default avatar */
.default-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  font-weight: bold;
  text-transform: uppercase;
}

/* Feed */
.story-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  margin-bottom: 15px;
}
.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  cursor: pointer;
}
.story-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  padding: 2px;
  background: var(--bg);
}
.story-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.story-name {
  font-size: 0.7rem;
  margin-top: 5px;
  color: var(--text-secondary);
}
.add-story {
  border: 2px dashed var(--primary);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.post-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.post-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  flex-wrap: wrap;
}
.post-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.post-user { 
  font-weight: 600; 
  display: flex; 
  align-items: center; 
  gap: 5px; 
  flex-wrap: wrap;
}
.follow-btn-small {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  cursor: pointer;
  margin-left: 5px;
}
.follow-btn-small.following {
  background: var(--primary);
  color: white;
}
.post-time { font-size: 0.75rem; color: var(--text-secondary); margin-left: auto; }
.post-content { margin: 10px 0; line-height: 1.5; }
.post-media { width: 100%; border-radius: 16px; margin: 10px 0; max-height: 400px; object-fit: cover; }
.post-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.post-actions button {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.post-actions .liked { color: var(--accent); }
.like-count, .comment-count { font-size: 0.9rem; }

/* Search */
.search-box {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 20px;
  color: var(--text);
}
.search-box i { margin-right: 10px; }
.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}
.search-box input::placeholder { color: var(--text-secondary); }

.user-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--glass);
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}
.user-item img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.user-info { flex: 1; }
.user-info h4 { font-size: 1rem; display: flex; align-items: center; gap: 5px; }
.user-info p { font-size: 0.8rem; color: var(--text-secondary); }
.user-item button { margin-left: 5px; }

/* Profile */
.profile-header {
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.profile-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.profile-stats {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.stat { text-align: center; cursor: pointer; }
.stat-number { font-weight: 700; font-size: 1.2rem; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); }

.profile-details {
  margin: 15px 0;
  padding: 15px;
  background: var(--glass);
  border-radius: 16px;
}
.detail-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}
.detail-item i { width: 20px; color: var(--primary); }

.settings-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}
.settings-icon:hover {
  color: var(--primary);
}

.suggestions-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
}
.suggestion-item {
  min-width: 80px;
  text-align: center;
  cursor: pointer;
}
.suggestion-item img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.suggestion-item span {
  display: block;
  font-size: 0.8rem;
  margin-top: 5px;
}

/* Chats */
#chats-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.chats-header button {
  background: var(--primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}
.chats-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.chat-tab {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px;
  color: var(--text-secondary);
  cursor: pointer;
}
.chat-tab.active {
  background: var(--primary);
  color: white;
}
.chats-list {
  flex: 1;
  overflow-y: auto;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 10px;
}
.chat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  position: relative;
}
.chat-item:last-child { border-bottom: none; }
.chat-item img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-info { flex: 1; }
.chat-name { font-weight: 600; display: flex; align-items: center; gap: 5px; }
.chat-last { font-size: 0.8rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-time { font-size: 0.7rem; color: var(--text-secondary); }
.unread-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.chat-window {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border-radius: 24px;
  padding: 15px;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
body.chat-fullscreen .chat-header {
  padding: 5px 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  z-index: 10;
}
body.chat-fullscreen .chat-header img {
  width: 30px;
  height: 30px;
}
body.chat-fullscreen .chat-header strong {
  font-size: 1rem;
}
.chat-header img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}
.message {
  max-width: 70%;
  padding: 8px 12px;
  border-radius: 18px;
  background: var(--glass);
  align-self: flex-start;
  position: relative;
  word-wrap: break-word;
  animation: messageIn 0.2s ease;
}
@keyframes messageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.message.own {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  align-self: flex-end;
}
.message-time {
  font-size: 0.6rem;
  color: var(--text-secondary);
  margin-left: 5px;
  display: inline-block;
}
.message-status { font-size: 0.7rem; color: var(--text-secondary); margin-left: 5px; }
.message .delete-message {
  position: absolute;
  top: 2px;
  right: 2px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  display: none;
}
.message:hover .delete-message {
  display: block;
}
.chat-input-area {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.chat-input-area input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px 20px;
  color: var(--text);
  outline: none;
}
.chat-input-area button {
  background: var(--primary);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s;
}
.modal.active { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-content {
  width: 90%;
  max-width: 400px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 24px;
  animation: slideUp 0.2s;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.fullscreen-modal {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  margin: 0;
}
.fullscreen-modal .modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fullscreen-modal textarea {
  flex: 1;
  min-height: 200px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  color: var(--text);
  font-size: 1rem;
  resize: none;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.modal-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.modal-footer input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px;
  color: var(--text);
  outline: none;
}
.close-modal {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}
.modal-input {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  color: var(--text);
  margin-bottom: 15px;
  outline: none;
}
.story-viewer .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.story-viewer img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 20px;
}

/* New Chat Options */
.new-chat-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--glass);
  border-radius: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.new-chat-option:hover {
  background: var(--glass-hover);
}
.new-chat-option i {
  font-size: 1.2rem;
  color: var(--primary);
}

/* Selected members tags */
.selected-members {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0;
}
.selected-member-tag {
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.selected-member-tag i {
  cursor: pointer;
}

/* Edit Profile Modal */
.edit-profile .profile-pic-edit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.edit-profile .profile-pic-edit img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.edit-profile .form-group {
  margin-bottom: 15px;
}
.edit-profile .form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.edit-profile .form-group input,
.edit-profile .form-group textarea,
.edit-profile .form-group select {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  color: var(--text);
  outline: none;
}
.edit-profile .form-group textarea {
  resize: vertical;
}

/* Settings Modal */
.setting-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  cursor: pointer;
  border-radius: 16px;
  transition: var(--transition);
}
.setting-item:hover {
  background: var(--glass);
}
.setting-item i {
  width: 20px;
  color: var(--primary);
}

/* Notifications */
.notification-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.notification-item.unread {
  background: rgba(99, 102, 241, 0.1);
}
.notification-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.notification-content {
  flex: 1;
}
.notification-text {
  font-size: 0.9rem;
}
.notification-time {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Custom Popup */
.popup-content {
  max-width: 350px;
}
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
}
.popup-body {
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
}
.popup-footer {
  padding: 15px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  border-top: 1px solid var(--border);
}
.close-popup {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}
#popup-cancel.hidden {
  display: none;
}

/* Danger Zone */
.danger-zone {
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
}
.btn-danger {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
}
.creator-credit {
  text-align: center;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.creator-credit i { color: gold; }

/* Group settings */
#group-dp-preview img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 10px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* Mobile responsiveness */
@media (max-width: 450px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  .profile-avatar {
    margin-bottom: 10px;
  }
  .profile-stats {
    justify-content: center;
  }
  .post-avatar {
    width: 30px;
    height: 30px;
  }
  .chat-header img {
    width: 30px;
    height: 30px;
  }
  .message img {
    max-width: 100px;
  }
  }
