* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #07111f;
  color: #e6edf7;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.loadora-host {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #07111f;
  overflow: hidden;
}

.loadora-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #07111f;
}

.loadora-loading,
.loadora-error {
  position: fixed;
  left: 50%;
  top: 18px;
  z-index: 2;
  max-width: min(460px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(159, 178, 202, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(7, 17, 31, 0.92);
  color: #e6edf7;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  font-size: 14px;
  line-height: 1.4;
}

.loadora-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.loadora-loading[hidden],
.loadora-error[hidden] {
  display: none;
}

.loading-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #12a66a;
  box-shadow: 0 0 0 6px rgba(18, 166, 106, 0.16);
}
