/* Les Palmiers in Les Issambres — eigene Stile (ergänzt Tailwind-CDN) */

.pin-box {
  width: 3.25rem;
  height: 3.75rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  border: 2px solid #cbd5e1;
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pin-box:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

/* Monatskalender: 7-Spalten-Grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}
.cal-cell {
  position: relative;
  min-height: 104px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 3px 5px;
  overflow: hidden;
}
.cal-cell.is-other-month {
  background: #f8fafc;
  color: #cbd5e1;
}
.cal-cell.is-today {
  outline: 2px solid #0ea5e9;
  outline-offset: -2px;
}
.cal-daynum {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}
.cal-bar {
  font-size: 0.7rem;
  line-height: 1.25;
  color: #fff;
  border-radius: 5px;
  padding: 2px 6px;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

/* Touch-Ziele auf Mobile vergrößern */
@media (max-width: 640px) {
  .cal-cell { min-height: 70px; }
  .cal-bar { font-size: 0.62rem; padding: 1px 4px; }
}

.badge-incident {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 9999px;
}

/* Einheitliche Formular-Stile (Buchungsformular) */
.lp-field {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-field:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.lp-label {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.lp-section {
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  padding: 0.9rem;
}
.lp-section-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* Hightech-Karten */
.lp-clean-card,
.lp-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 1.1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 36px -20px rgba(15, 23, 42, 0.28);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.lp-card:hover,
.lp-clean-card:hover {
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06), 0 22px 50px -22px rgba(15, 23, 42, 0.34);
  border-color: #d6e0ec;
}
.lp-card:active { transform: translateY(1px); }

/* Schöne runde Navigationsbuttons (Kalender / Jahr) */
.cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
}
.cal-nav:hover { background: #f1f5f9; border-color: #cbd5e1; color: #0f172a; }
.cal-nav:active { transform: scale(0.94); }
.cal-nav svg { width: 1.15rem; height: 1.15rem; }

/* Header-Glocke (Vorfall-Notification) */
@keyframes lp-bell-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.lp-bell-on { animation: lp-bell-pulse 1.6s ease-in-out infinite; }
