/* =========================
   Dark Chat - profile.css
========================= */
body.dark {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.topbar {
  background: #111;
  color: #0f0;
  padding: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #222;
}

.profile-card {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #222;
}

.profile-photo {
  position: relative;
  display: inline-block;
}

.profile-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #0f0;
}

.upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0f0;
  color: #000;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.profile-info h2 {
  margin: 10px 0 5px;
}

.profile-info p {
  color: #888;
  font-size: 14px;
}

.profile-details {
  padding: 15px;
}

.detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #222;
}

.detail span:first-child {
  font-weight: bold;
  color: #0f0;
}

.action-btns {
  text-align: center;
  margin: 20px;
}

.action-btns button {
  background: #0f0;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid #222;
}

.bottom-nav a {
  color: #888;
  text-decoration: none;
  font-size: 20px;
}

.bottom-nav a.active, 
.bottom-nav a:hover {
  color: #0f0;
}