html, body {
    margin: auto;
    padding: auto;
    font-family: "Poppins", sans-serif;
    background: rgb(12, 12, 12) url('../../public/images/piwonie.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}
main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
section {
   text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
ul li {
  margin-bottom: 10px;
  font-weight: bold;
  padding: 10px;
  background: #f5fffa;
  border-radius: 5px;
}

/* 📌 Nagłówek Księgi Gości */
.check-header {
    margin-top: 80px; /* Jeśli menu ma pozycję fixed */
    text-align: center;
    padding: 20px 0;
}
.check-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4em;
    color: #4a3e2c;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.check-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.4em;
    color: #6a5944;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}
#rsvp form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

#rsvp input, #rsvp select, #rsvp button {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#rsvp button {
  background-color: #2e8b57;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

#rsvp button:hover {
  background-color: #1e6642;
}
#guest-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fffaf4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#guest-table th, #guest-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #e0dcd6;
}
#guest-table thead {
  background-color: #f0ede8;
}
#guest-table tr:last-child td {
  border-bottom: none;
}
.guest-cell-message {
  text-align: center;
  font-style: italic;
  color: #6a5944;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
}
