.copy-text-button {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: 1px solid #04384c;
  background-color: #fff;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.copy-text-button:hover {
  background-color: #04384c;
}
.copy-text-button:hover .copy-text-button__icon svg {
  fill: #fff;
}
.copy-text-button:hover .copy-text-button__text {
  color: #fff;
}
.copy-text-button__icon {
  width: 1.5rem;
  height: 1.5rem;
}
.copy-text-button__icon svg {
  fill: #666;
  transition: fill 0.3s ease;
}
.copy-text-button__text {
  color: #04384c;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05rem;
  transition: color 0.3s ease;
}

.notyf {
  padding-top: 100px;
  padding-right: 0;
}
.notyf__icon {
  display: none;
}
.notyf__dismiss {
  display: none;
}
.notyf__ripple {
  background: #04384c !important;
}
.notyf__toast {
  padding: 0 1rem;
  border-radius: 0;
  min-width: 250px;
  background-color: #04384c;
}
.notyf__wrapper {
  padding: 1rem 0;
  border-radius: 0;
}

@media (max-width: 480px) {
  .notyf__toast {
    width: auto;
    min-width: 250px !important;
  }
}