/* Generic */

:root {
    --orientation: row;
    --neg-orientation: column;
    --default-wrap: wrap;
    --default-small-gap: 5px;
    --default-gap: 10px;
    --default-big-gap: 15px;

    --default-font-color: #0b4c4f;
    --default-font-highlight-color: rgba(20, 20, 60, 1);
    --default-font-neg-color: #c5dcdd;

    --default-border: 1px solid rgba(184, 216, 245, 0.80);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.3;

    background: radial-gradient(ellipse at center, rgba(243, 237, 228, 0.2) 0%, rgba(243, 237, 228, 0) 75%);
    color: white;
}

section {
	width: 100vw;
	max-width: 100vw;
    overflow: hidden;
    color: var(--default-font-color);
    padding: 20px 0px 30px 0px;
}

h1 {
    font-size: 2.7em;
    margin: 30px 0px;
    transition: 200ms transform, 200ms color linear;
}
h1:hover {
    color: var(--default-font-highlight-color);
    transform: scale(1.025);
}

#content {
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
}

.inner_section {
    width: 90%;
    max-width: 1366px;
    margin: 0px auto;
    padding: 0px;

    text-align: center;
}

.default_orientation {
    display: flex;
    flex-flow: var(--orientation) var(--default-wrap);
    gap: var(--default-small-gap, 5px);
}
.turned_orientation  {
    display: flex;
    flex-flow: var(--neg-orientation) var(--default-wrap);
    gap: var(--default-small-gap, 5px);
}

.horizontal {
  display: flex;
  flex-flow: row wrap;
  gap: 0px;
  justify-content: center;
}

.vertical {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: var(--default-small-gap, 5px);
}

.glass-panel {
    z-index: 5;
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(2px);

    border: 1px solid rgba(184,216,245,0.45);
    box-shadow: 10px 10px 20px -10px rgba(184,216,245,0.75);
}

.glass-panel > .glass-panel-inner {
    margin: var(--default-gap, 10px);
}

.glass-panel-inner {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    height: calc(100% - 42px);

    transition: background-color 200ms linear;
}

.glass-panel-inner:hover {
    background-color: rgba(255, 255, 255, 0.95);

}

.glass-panel-inner.padding {
    padding: var(--default-gap, 10px);
}

.hero {
    text-align: center;
    margin: 5px 0px 0px 0px;
}

.container {
    padding: 20px;
    margin: 0 auto;
}
.time-select{
  display:flex;
  align-items:center;
  gap:8px;
}

.time-select select{
  width:90px;
}
/* Specific */
#telefoon, #naam_baasje, #email, #email, #behandeling, #hond_grootte, #hond_ras, #hond_naam, #uur, #minuut {
  float: right;

  outline: none;
  border: 1px solid RGBA(0, 0, 0, 0.1);
  background: none;
  margin: 0px;
  box-sizing: border-box;
}
.min-size {
  min-width: 200px;
  max-width: 300px;
  width: 300px;
}
.panel_card {
  width: 100%;
  min-width: 320px;
  max-width: 450px;
  border-radius: 0px 12px 12px 0px;
  background: linear-gradient(180deg, #FAFAFA 0%, #DEDEDE 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.panel_card .details {
  padding: 10px;
  text-align: left;  
}

.panel_card .error {
  color: red;
}
.panel_card .success {
  color: green;
}
.panel_card .error > *,.panel_card .success > * {
  margin-left: auto;
  padding: 5px;
  font-weight: 600;
}
.panel_card .details .cta {
    background: linear-gradient(
      100deg,
      #13736c 0%,
      #0b5f59 35%,
      #0b5f59 65%,
      #13736c 100%
    );
    color: #fff;  

    padding: 11px 25px; 
    cursor: pointer;

    font-size: 1.2em;
    font-weight: 700;

    float: right;
    margin: 10px;
    display: inline-block;

    border: 1px solid #0f766e;
    border-radius: 14px;
    box-shadow: 0 4px 6px 0 rgba(66, 46, 134, .04);

    transition: 200ms transform linear;
}

.panel_card .details .cta:hover {
    background-color: #ff4500;
    transform: scale(1.025);
}

.panel_card .details > * {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}


.calendar-card {
  width: 100%;
  min-width: 350px;
  max-width: 450px;
  border-radius: 12px 0px 0px 12px;
  padding: 18px 18px 16px;
  color: rgba(248, 250, 252, 0.96);
  background: linear-gradient(180deg, #0f766e 0%, #0b5f59 100%);
  box-shadow: 0 18px 28px rgba(2, 44, 44, 0.22);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Header row */
.calendar-card .cal-header {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}

.calendar-card .month-title {
  text-align: center;
  flex: 1 0 100px;
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 16px;
  opacity: 0.98;
}

.calendar-card .nav-btn {
  height: 40px;
  width: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.92);
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, background 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

.calendar-card .nav-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 14px rgba(2, 44, 44, 0.18);
  transform: translateY(-1px);
}

.calendar-card .nav-btn:active {
  transform: translateY(0px) scale(0.98);
  background: rgba(245, 158, 11, 0.16); /* amber press */
}

.calendar-card .nav-btn:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.75);
  outline-offset: 2px;
}

.calendar-card .chev {
  font-size: 26px;
  line-height: 1;
  opacity: 0.9;
}

/* Divider */
.calendar-card .divider {
  height: 1px;
  margin: 5px 10px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 5px;
}

/* Days of week */
.calendar-card .dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 10px;
  width: 100%;
}

.calendar-card .dow-cell {
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0.78;
  color: rgba(248, 250, 252, 0.78);
}

.non-selectable, label, .day, .dow-cell {
  user-select: none;
}

/* Date grid */
.calendar-card .grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 100%;
}

/* Each day */
.calendar-card .day {
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(248, 250, 252, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.10);
  box-sizing: border-box;

  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, color 160ms ease;
  cursor: pointer;
}

/* Hover */
.calendar-card .day:hover:not(.day:faded) {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 16px rgba(2, 44, 44, 0.16);
  transform: translateY(-1px);
}

/* Click / press */
.calendar-card .day:active {
  transform: translateY(0px) scale(0.98);
  background: rgba(245, 158, 11, 0.20);
  border-color: rgba(245, 158, 11, 0.38);
}

/* Keyboard focus */
.calendar-card .day:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.75);
  outline-offset: 2px;
}

/* Previous/next month days */
.calendar-card .day.muted {
  opacity: 0.1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.70);
}

/* Keep muted subtle on hover */
.calendar-card .day.muted:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transform: none;
}

/* Extra fade row at the bottom */
.calendar-card .day.faded {
  opacity: 0.35;
}

/* Today */
.calendar-card .day.today {
  border-color: rgba(255, 255, 255, 0.8);
}
/* Highlighted day (selected) */
.calendar-card .day.active {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.28), rgba(251, 146, 60, 0.22));
  border-color: rgba(245, 158, 11, 0.45);
  position: relative;
  box-shadow: 0 14px 20px rgba(2, 44, 44, 0.18);
}

.calendar-card .day.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 17px;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(248, 250, 252, 0.88);
  border-radius: 3px;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .calendar-card .nav-btn,
  .calendar-card .day {
    transition: none;
  }
}

/* Everything else */
@media print {
  .section:not(.hero) {
    page-break-before: always;
  }
}