.account-container {
  max-width: 800px;
  margin: 100px auto;
  background-color: var(--secondary-bg);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.account-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.account-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.section-title i {
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.section-title h3 {
  margin: 0;
  font-size: 1.5rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.warning-message {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.delete-confirmation {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
}

.delete-confirmation p {
  color: #e74c3c;
  font-weight: 500;
}

.delete-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-danger {
  background-color: #e74c3c;
}

.btn-danger:hover {
  background-color: #c0392b;
}

.btn-secondary {
  background-color: #7f8c8d;
}

.btn-secondary:hover {
  background-color: #95a5a6;
}

.phone-input-container {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 30% !important;
}

.phone-number {
  width: 70% !important;
}

.non-editable {
  background-color: rgba(255, 255, 255, 0.03);
  cursor: not-allowed;
}