textarea {
    resize: none;
}

#profile_birthdate, #profile_gender{
  cursor: pointer;
}

/* history reward */
.reward_history_wrap {
  padding: 1rem;
  background-color: #f8f9fa;
}

.reward_history_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  background-color: #e9ecef;
  flex-wrap: wrap;
}

.reward_history_date {
  font-weight: bold;
  color: #343a40;
  white-space: nowrap;
}

.reward_history_taskname {
  color: #495057;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* affect on menu appearance */
.reward_history_taskname.mobile{
  display: block;
  width: 100px;
}

.amass_title_wrap.mobile{
  flex-direction: column;
}

.amass_task_pending.mobile{
  max-height: 290px;
}

.amass_task_complete.mobile{
  max-height: 310px;
}

/* end off affect on menu appearance */

.reward_history_point {
  font-weight: bold;
  color: #28a745;
  white-space: nowrap;
}

.reward_history_item:hover {
  background-color: #d6d8db;
  cursor: pointer;
}

@media (max-width: 768px) {
  .reward_history_item {
      flex-direction: column;
      align-items: flex-start;
  }
  .reward_history_taskname, .reward_history_point {
      max-width: 100%;
      margin-top: 0.25rem;
  }
}
