body {
  background-color: #F5F5F5;
}

.user-settings-box {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background: white;
  padding: 20px;
  box-sizing: border-box;
}

.setting-row {
  padding: 12px 8px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
}

.edit-icon {
  color: #999;
  transition: color 0.2s ease;
}
.edit-icon:hover {
  color: #1e87f0;
}

.hidden-box {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 5px;
}

.hidden-box.active {
  max-height: 500px;
  opacity: 1;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.green-btn {
  background-color: #0F8352;
  color: white;
  border: none;
  border-radius: 5px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  height: 35px !important;
}

.green-btn:hover {
  background-color: #0F8352;
  color: white;
}

.confirmed {
  font-size: 13px;
  color: #888;
}

.uk-input:focus {
  border-color: #0F8352 !important;
  box-shadow: 0 0 0 2px rgba(15, 131, 82, 0.2);
  outline: none;
}

.input-text{
    border-radius: 5px;
    height: 35px !important;
    font-size: 14px;
    padding: 0px 5px;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}

@media (max-width: 640px) {
  .user-settings-box {
    margin-left: 16px;
    margin-right: 16px;
  }
}