/* premium-calendar.css — elegancki, spójny styl */
:root {
  --gold: #C8A85A;
  --navy: #1F2A44;
  --ink: #1E2430;
  --muted: #6B7280;
  --paper: #FAF8F5;
  --white: #FFFF;
  --line: #E6E1D8;
  --shadow: 0 6px 18px rgba(0, 0, 0, .06);
  --radius: 12px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

img {
  max-width: 100%;
  display: block
}

button {
  font: inherit
}

/* Podstawa */
html,
body {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

/* Nagłówki serif */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--navy);
}
h1 {
  font-size: 46px;
  line-height: 1.15
}

h2 {
  font-size: 30px
}

h3 {
  font-size: 22px
}

/* Layout */
.containerr {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.container {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.left-column,
.center-column,
.right-column {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
text-align: center;
}

.left-column h1 {
  text-align: center;
  position: relative;
  margin-bottom: 16px;
  font-size: 40px;
}

/* Przyciski */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px
}

.btn-manage {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
  background: var(--navy);
  color: #fff
}

.btn-manage:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 42, 68, .15)
}

/* Usunięcie przycisku lista rezerwowa z lewej kolumny */
.btn-waiting-list.left-column-btn {
  display: none;
}

/* Kalendarz */
.center-column {
  flex: 1.6
}
