body {
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.container {
  width: 100%;
}

.card {
    width: 900px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-right: 160px;
}

.profile-card {
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 20px;
}

.email {
  color: grey;
  margin: 5px 0 10px;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.green {
  background: #e6f9f0;
  color: green;
}

.blue {
  background: #e6f0ff;
  color: #007bff;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h3 {
  margin: 0;
}

p {
  margin: 5px 0 0;
  color: grey;
  font-size: 14px;
}

.dropdown {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  background: #ccc;
  border-radius: 25px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: green;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Buttons */
.btn {
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.gradient-blue {
  background: linear-gradient(45deg, #4facfe, #8e44ad);
}

.gradient-red {
  background: linear-gradient(45deg, #ff6a6a, #ff0000);
}

.red {
  color: red;
}