/* Matches user/customer `.ollaa-alert` (theme/variables.css) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Lexend Deca', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #111;
}

.page {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/bg.jpg') center / cover no-repeat;
}

.ollaa-alert {
  width: 80%;
  max-width: 288px;
}

.alert-wrapper {
  container-type: inline-size;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  background: #ffffff;
  text-align: center;
}

.alert-head {
  padding: 20px 10px 10px;
}

.alert-title {
  margin: 0;
  font-size: clamp(1.05rem, 5.6cqi, 1.15rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.alert-message {
  margin: 0;
  padding: 0 12px 20px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #888;
  line-height: 1.5;
}

.alert-button-group {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #ebebeb;
  padding: 0;
  margin: 0;
}

.alert-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b9ff9;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  text-transform: none;
  padding: 15px 8px;
  background: transparent;
  border: none;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.alert-button:focus,
.alert-button:focus-visible {
  outline: none;
  background: rgba(91, 159, 249, 0.06);
}

.alert-button:active {
  opacity: 0.75;
}
