    body {
      font-family: 'Treasure Map Deadhand', cursive;
      background: url('https://www.transparenttextures.com/patterns/aged-paper.png') repeat;
      color: black;
      text-align: center;
      padding: 2rem;
    }

    h1 {
      color: #d4af37;
      text-shadow: 2px 2px 4px black;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    form {
      background: rgba(255, 255, 255, 0.85);
      padding: 20px;
      border: 2px solid #d4af37;
      border-radius: 12px;
      max-width: 600px;
      margin: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.6);
    }

    label {
      display: block;
      margin-top: 10px;
      font-weight: bold;
    }

    input, select {
      width: 100%;
      padding: 8px;
      margin-top: 4px;
      border-radius: 6px;
      border: 1px solid #aaa;
    }

    button {
      margin-top: 15px;
      padding: 10px 20px;
      background: #d4af37;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    button:hover {
      background: #b8912e;
    }

    table {
      margin-top: 2rem;
      width: 100%;
      border-collapse: collapse;
    }


/* Table scrolls horizontally on small screens */
.table-container {
  overflow-x: auto;
  margin-top: 1rem;
}

    th, td {
      border: 1px solid #444;
      padding: 8px;
      text-align: center;
    }

    th {
      background: #d4af37;
      color: black;
    }
.raid-days {
    display: flex;               /* horizontal layout */
    flex-wrap: wrap;             /* wrap to next line if too long */
    gap: 20px;                   /* space between checkboxes */
    margin-top: 10px;
    justify-content: center;     /* optional: center horizontally */
}

.raid-days label {
    display: flex;               /* keep checkbox and text inline */
    align-items: center;         /* vertical center */
    gap: 6px;                    /* space between checkbox and text */
    cursor: pointer;
    font-size: 1rem;
}

.raid-days input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

.goback-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4af37;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    transition: transform 0.2s, background-color 0.2s;
    
}

.goback-btn:hover {
    background-color: #b8912e;
    transform: scale(1.05);
}


/* Adjust spacing on very small screens */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  label {
    font-size: 1rem;
  }

  th, td {
    font-size: 0.8rem;
    padding: 6px;
  }
}