.transaction-type-button {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.transaction-type-label input:checked + .transaction-type-button {
  border-color: #0d6efd;
  background-color: #f0f7ff;
  color: #0d6efd;
}

.transaction-type-button:hover {
  border-color: #ced4da;
  transform: translateY(-2px);
}

.suggestions {
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  transition: all 0.2s ease-in-out;
}

.suggestion-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.suggestion-item:hover {
  background-color: #f0f7ff;
}

/* Custom switch styling */
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Subtle animations */
#copyButton {
  transition: all 0.2s ease;
}

#copyButton:hover {
  background-color: #e9ecef;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  transition: box-shadow 0.2s ease;
}

/* Animation for the preview section */
#preview {
  transition: background-color 0.3s ease;
}

/* Improving readability in the preview section */
.bg-light {
  background-color: #030303 !important;
}

/* Shadow effects */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .transaction-type-button {
    padding: 0.5rem 1rem !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.tab-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.tab-button.active {
  background: var(--primary-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

.shadow__btn {
  padding: 10px 20px;
  border: none;
  font-size: 17px;
  color: #fff;
  border-radius: 7px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
  text-decoration: none;
}

.shadow__btn {
  background: rgb(0, 140, 255);
  box-shadow: 0 0 25px rgb(0, 140, 255);
}

.shadow__btn:hover {
  box-shadow: 0 0 5px rgb(0, 140, 255), 0 0 25px rgb(0, 140, 255),
    0 0 50px rgb(0, 140, 255), 0 0 100px rgb(0, 140, 255);
}

/* From Uiverse.io by andrew-demchenk0 */
.info {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #509af8;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.info__icon {
  width: 20px;
  height: 12px;
  transform: translateY(-2px);
  margin-right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info__icon path {
  fill: #fff;
}

.info__title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.info__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.info__close path {
  fill: #fff;
}
.discord-1 {
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
