/* Checkin-Widget spezifische Anpassungen */
body.checkin-widget {
  padding: 1rem 0;
}
@media (max-width: 600px) {
  body.checkin-widget {
    padding: 0.5rem 0;
  }
}
body.checkin-widget .widget-container {
  padding: 1.5rem;
}
@media (max-width: 600px) {
  body.checkin-widget .widget-container {
    padding: 0.5rem;
  }
}
body.checkin-widget .booking-headline-bar {
  margin: 0 0 2rem 0;
  padding: 13px 55px;
  border-radius: 8px;
}
@media (max-width: 600px) {
  body.checkin-widget .booking-headline-bar {
    margin: 0 0 1.5rem 0;
    padding: 13px 20px;
    font-size: 1.8em;
  }
}
body.checkin-widget .booking-switch {
  margin-top: 0;
}
/* Widget-spezifische Styles für Booking/Checkin Widget */

:root {
  --primary: #346733;
  --accent: #b1bc3b;
  --text-primary: #1c2027;
  --bg: #f3f0ea;
  --bg-card: #fff;
  --input-bg: #f3f0ea;
  --border-radius: 8px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.widget-container {
  margin: 0;
  padding: 0;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  min-height: auto;
  height: auto;
}

.booking-headline-bar {
  background: #346733;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  padding: 13px 55px;
  margin: -2.2rem -1.5rem 2rem -1.5rem;
  letter-spacing: 1px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .widget-container {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .booking-headline-bar {
    font-size: 2em;
    margin: -1.2rem -0.5rem 1.5rem -0.5rem;
    padding: 13px 55px;
  }
}

.booking-switch {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.booking-switch a {
  width: 100%;
  text-decoration: none;
}
.booking-switch button,
.booking-switch a > button {
  width: 100%;
  background: #f3f0ea;
  color: #232a1e;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 400; 
  padding: 1.1rem 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  text-align: center;
  box-shadow: none;
  letter-spacing: 0.5px;
  outline: none;
  border: 2px solid transparent;
  margin: 0;
}
.booking-switch button:hover,
.booking-switch a > button:hover,
.booking-switch button:focus,
.booking-switch a > button:focus {
  border: 2px solid #b1bc3b;
  background: #e3e7c7;
  color: #232a1e;
}

.current-info {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 1.1rem 1.1rem;
  margin: 0 0 1.5rem 0;
  font-size: 1.01rem;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.15);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  text-align: left;
  display: none;
}

.current-info-content {
  display: block;
}

.current-info-text {
  line-height: 1.45;
}

.current-info-more {
  display: inline;
  padding: 0;
  margin-left: 0.35rem;
  border: 0;
  background: none;
  color: #7a5a00;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.current-info-more:hover,
.current-info-more:focus {
  color: #5f4500;
}

.current-info-modal[hidden] {
  display: none;
}

.current-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(28, 32, 39, 0.45);
  box-sizing: border-box;
}

.current-info-modal-dialog {
  width: min(100%, 420px);
  max-height: min(80vh, 560px);
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  color: var(--text-primary);
  padding: 1rem;
  box-shadow: 0 20px 45px rgba(28, 32, 39, 0.22);
}

.current-info-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.current-info-modal-close {
  padding: 0.45rem 0.8rem;
  border: 1px solid #d9d3c7;
  border-radius: 6px;
  background: var(--input-bg);
  color: var(--text-primary);
  font: inherit;
  cursor: pointer;
}

.current-info-modal-body {
  margin: 0;
  line-height: 1.55;
}

.arrival-departure-hint {
  background: #e3e7c7;
  color: #232a1e;
  border-radius: 8px;
  font-size: 1.01rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 0.2rem;
  margin-bottom: 1.1rem;
  box-shadow: none;
  letter-spacing: 0.5px;
}

#reservation-info,
#checkin-info,
#extension-info,
#payment-problem-info {
  background: var(--input-bg);
  color: var(--text-primary);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.1rem 1.1rem;
  margin: 1.5rem 0 0 0;
  font-size: 1.01rem;
  box-shadow: 0 2px 8px rgba(177, 188, 59, 0.07);
  display: none;
  font-family: 'Roboto', Arial, sans-serif;
  hyphens: auto;
  word-break: break-word;
}
