.stops-card * {
  font-size: 16px;
}

.stops-card {
  position: absolute;
  background-color: #ffffff;
  flex-direction: column;
  margin: 20px 0 0 20px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}

.stops-card .ant-card-body {
  padding: 0;
}

.card-header-row {
  align-items: baseline;
  padding: 0 20px 20px;
}

.search-input-form {
  width: calc(100% - 75px);
  height: 42px;
  margin-left: 9px;
}

.divider {
  width: 100%;
  margin-bottom: 0;
}

.animated-container {
  width: 100%;
  overflow: hidden;
}

.card-content {
  justify-content: center;
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.card-content.open {
  max-height: 500px; /* Adjust this value based on your content */
  opacity: 1;
  transform: translateY(0);
}

.card-content.closed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
}

.address-list {
  width: 100%;
}

.stop-icon {
  margin-left: 15px;
}

.stop-icon * {
  font-size: 20px;
}

.stop-up {
  color: #108ee9;
  font-size: 16px;
  cursor: pointer;
}

.stop-down {
  color: #87d068;
  font-size: 16px;
  cursor: pointer;
}

.stop-remove {
  color: #f5222d;
  font-size: 16px;
  cursor: pointer;
}

.header-icons {
  justify-content: flex-end;
  padding: 20px;
}

.header-icons * {
  font-size: 20px;
  cursor: pointer;
}

.up-icon {
  margin-right: 15px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
}

.down-icon {
  margin-right: 15px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
}

.up-icon.hidden, .down-icon.hidden {
  opacity: 0;
  transform: scale(0.8);
}

.api-key-space {
  padding: 0 20px 20px;
  flex-direction: row;
}

.api-key-input-form {
  height: 42px;
  width: calc(100% - 155px);
  margin-left: 9px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.t-title {
  width: 66px;
  margin-top: 5px;
}

.btn-key-save {
  height: 42px;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0;
  border-left: none;
  background-color: #4096ff;
  color: #ffffff;
  border: 1px solid #4096ff;
}

.btn-key-save:disabled {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0;
  border-left: none;
}

.table-spin-content {
  width: 100%;
}