.profile-header {
  max-width: 420px;
  margin: 0 auto;
  background: #0d0b0b;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 11, 1) 0%,
    rgba(45, 29, 54, 1) 50%,
    rgba(11, 50, 59, 1) 100%
  );
  color: #fff;
  padding: 50px 20px 90px;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
}

.profile-picture {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-container {
  margin-top: 50px;
  padding: 20px;
}

.profile-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
}

.profile-info h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.profile-info p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.profile-edit a {
  color: #0d0b0b;
  font-size: 1.3rem;
}

.profile-actions {
  margin-top: 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.profile-actions a {
  display: block;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
}

.profile-actions a:last-child {
  border-bottom: none;
}

.profile-actions a:hover {
  background-color: #f9f9f9;
}

.profile-actions i {
  margin-right: 10px;
  color: #0d0b0b;
}

.logout-btn {
  margin-top: 30px;
  text-align: center;
}

.logout-btn a {
  padding: 10px 30px;
  border-radius: 30px;
  background: #0d0b0b;
  background: linear-gradient(
    90deg,
    rgba(13, 11, 11, 1) 0%,
    rgba(45, 29, 54, 1) 50%,
    rgba(11, 50, 59, 1) 100%
  );
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.logout-btn a:hover {
  background-color: #0d0b0b;
}
