/* vim: set tabstop=2 shiftwidth=2 expandtab smarttab: */

* {
  box-sizing: border-box;
}

body {
  margin: 15px auto;
  max-width: 500px;
  line-height: 1.2;
  font-size: 16px;
  background-color: #FFFFFF;
  color: #000000;
  padding: 0 15px;
  font-family: Arial, sans-serif;
}

body.wide {
  max-width: 1200px;
}

.outdated_rsvp {
  font-style: italic;
  text-decoration: line-through;
  color: grey;
}

.main-table-container {
  white-space: nowrap;
  overflow-x: auto;
  margin-left: -15px;
  padding-left: 15px;
  margin-right: -15px;
  padding-right: 15px;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.elusive-link {
  text-decoration: none;
}

a.elusive-link:hover {
  text-decoration: underline;
}

label {
  white-space: nowrap;
}

header {
  padding: 5px;
  border: 1px solid;
  background-color: #ff9600;
}

h1, h2 {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  font-size: 20px;
}

h2 {
  font-weight: normal;
}

p {
  margin: 16px 0;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

th, td {
  border: 1px solid;
  padding: 8px;
}

th {
  background-color: #ff9600;
  font-size: 85%;
  padding: 1px 8px;
  font-weight: normal;
}

td.mono, td.mono textarea, td.mono input {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 115%;
}

button.orange, input[type=submit].orange {
  background-color: #ff9600;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px 18px;
}




.marquee-container {
  margin-top: 1em;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  animation: scroll-left 60s linear infinite;
  padding-left: 100%; /* Ensures the text starts off-screen */
}

.marquee-content span {
  display: inline-block;
  padding-right: 20px; /* Adjust spacing between spans here*/
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
