.custom-dark-modal {
  background-color: #333;
  color: #fff;
}

.swal2-input {
  width: 60%;
}

.swal2-confirm {
  width: 100% !important;
  background-color: #4375B1 !important;
}


.swal2-styled.swal2-confirm {
  width: 100% !important;
  background-color: #00A1ED !important;
  border: none !important;
}

.calc-buttons {
  width: 60px;
  height: 60px;
  margin: 5px;
  font-size: 1.2em;
  background-color: rgba(255, 255, 255, 0.9);
}

.number-row {
  display: flex;
  justify-content: center;
}

.swal-header {
    font-size: 16pt;
    padding-top: 20px;
    margin-bottom: -15px;
}

.swal2-actions {
    margin-top: 10px;
    width: 45%;
}

.swal2-input {
    width: 50%;
}

.swal2-validation-message {
    background-color: #333;
    color: #F27474;
}

.custom-bg {
    background-image: url('/static/images/background.jpg');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;

}

.custom-bg-ds {
    background-image: url('/static/images/discord_page.jpg');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;

}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}




#wallet-alert {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none; /* Скрываем по умолчанию */
}

#wallet-alert.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#wallet-alert.hide {
    opacity: 0;
    transform: translateY(-20px);
}



@keyframes fadeInUnblur {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.asset-card-animated {
  animation: fadeInUnblur 0.6s ease forwards;
}
