.custom-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 1rem;
  border-radius: 0.375rem;
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.custom-toast-success {
  background-color: rgba(25, 135, 84, 0.7);
}

.custom-toast-danger {
  background-color: rgba(220, 53, 69, 0.7);
}

.custom-toast-warning {
  background-color: rgba(255, 193, 7, 0.7);
}

.custom-toast-info {
  background-color: rgba(13, 202, 240, 0.7);
}

[v-cloak] {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.btn {
  transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
  transition: background-color 0.2s ease;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  transition: all 0.2s ease;
}
