.tibiu-toast-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: min(92vw, 420px);
}

.tibiu-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  color: #141414;
  font-size: 14px;
  line-height: 1.4;
}

.tibiu-toast.is-success {
  border-color: rgba(25, 135, 84, 0.18);
}

.tibiu-toast.is-info {
  border-color: rgba(13, 110, 253, 0.18);
}

.tibiu-toast.is-warning {
  border-color: rgba(255, 193, 7, 0.25);
}

.tibiu-toast.is-error {
  border-color: rgba(220, 53, 69, 0.18);
}

.tibiu-toast__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #6c757d;
}

.tibiu-toast.is-success .tibiu-toast__dot {
  background: #198754;
}

.tibiu-toast.is-info .tibiu-toast__dot {
  background: #0d6efd;
}

.tibiu-toast.is-warning .tibiu-toast__dot {
  background: #ffc107;
}

.tibiu-toast.is-error .tibiu-toast__dot {
  background: #dc3545;
}

.tibiu-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 140px;
  color: #8a8f98;
  text-align: center;
}

.tibiu-skeleton-line {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2f3f5 25%, #e7e9ee 37%, #f2f3f5 63%);
  background-size: 400% 100%;
  animation: tibiu-skeleton 1.4s ease infinite;
}

.tibiu-skeleton-line + .tibiu-skeleton-line {
  margin-top: 10px;
}

.tibiu-skeleton-line.is-short {
  width: 62%;
}

.tibiu-loading-mask {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 120px;
  color: #8a8f98;
}

.tibiu-loading-mask.is-active {
  display: flex;
}

.tibiu-loading-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(30, 158, 255, 0.18);
  border-top-color: #1e9eff;
  border-radius: 50%;
  animation: tibiu-spin 0.9s linear infinite;
}

@keyframes tibiu-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tibiu-skeleton {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
