﻿
  html, body {
    height: 100%;
    padding: 0;
    overflow: hidden;
  }

  .cal-wrap {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calendly-inline-widget {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    border: 0;
  }

  .calendly-inline-widget,
  .calendly-inline-widget * {
    overscroll-behavior: contain;
  }

  #calendar {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* Wrapper: Kun top-spacer, fylder KUN indholdets højde */
.warning-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;   /* centrer kun vandret */
    padding: 40px 16px;        /* lidt top-margin */
    box-sizing: border-box;
}

/* Boksen skal være hvid og ikke fylde hele højden */
.warning-box {
    max-width: 420px;
    width: 100%;
    background: #ffffff;       /* <-- ændret fra #f7f7f7 til HVID */
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Overskrift */
.warning-box h2 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 20px;
}

/* Tekst */
.warning-box p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
}

/* Udråbstegn */
.warning-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fde047;
    color: #7a5c00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
    margin: 0 auto 10px;
}