/* Toasts, compact notices, empty states */

.toast-notice {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  background: #16a34a;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.panel-empty-lg {
  padding: 22px 0;
  font-weight: 700;
}

.panel-empty-md {
  padding: 14px 0;
  font-weight: 700;
}

.delete-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 68, 68, .22);
  background: rgba(239, 68, 68, .08);
  flex: 0 0 auto;
}

.delete-icon {
  color: rgba(239, 68, 68, .95);
}

@media (max-width: 991.98px) {
  .toast-notice {
    left: 16px;
    right: 16px;
    top: 16px;
  }
}


.toast-notice--warning {
  background: #f59e0b;
}

.toast-notice--error,
.toast-notice--danger {
  background: #dc2626;
}

.quota-panel-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  border: 1px solid rgba(245, 158, 11, .28);
  background: rgba(245, 158, 11, .10);
  color: #92400e;
}

.quota-panel-alert.is-danger {
  border-color: rgba(220, 38, 38, .22);
  background: rgba(220, 38, 38, .08);
  color: #991b1b;
}

.quota-panel-alert a {
  flex: 0 0 auto;
  font-weight: 700;
  color: inherit;
  text-decoration: underline;
}

.is-quota-blocked {
  opacity: .88;
}

@media (max-width: 767.98px) {
  .quota-panel-alert {
    align-items: flex-start;
    flex-direction: column;
  }
}
