.settings-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  padding: 20px;
}

.display-settings-dropdown, 
.delete-data-dropdown, 
.user-dropdown-content {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.user-dropdown-content {
  background: #ffffff;
  border-radius: 12px;
  margin-top: 5px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease;
}

.user-dropdown-content.open {
  max-height: 350px;
  padding: 15px;
  border: 1px solid #e5e5ea;
}

.profile-field {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f2f2f7;
  border-radius: 8px;
  margin-bottom: 5px;
}

.profile-field:last-child {
  margin-bottom: 0;
}

.profile-field div {
  display: flex;
  flex-direction: column;
}

.profile-field strong {
  color: #8e8e93;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.profile-field span {
  color: #1c1c1e;
  font-size: 1rem;
  font-weight: 500;
}

.profile-field i {
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-field i:hover {
  background: rgba(0, 123, 255, 0.25);
  transform: scale(1.05);
}

.settings-container button {
  width: 80%;
  max-width: 300px;
}