footer {
  text-align: center;
  padding: 3px;
  background-color: black;
  color: White;
  padding: 6px;
  text-decoration: none;
  font-size: 10px;
  line-height: .5;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

/* Style Tables */
table {
  width=50%;
  border-spacing: 10px;
  border: 1px solid black;
  border-collapse: collapse;
}

th, td {
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid black;
  border-collapse: collapse;
  min-width:30px;
}

tr:nth-child (odd) {
background-color: #blue;
}

th {
    padding: 12px;
    background-color: black;
}

.error {color: #FF0000;}

/* Style the header and links */
.header {
  overflow: hidden;
  background-color: black;
  padding: 20px 10px;
  width: 100%;
  color: White;
  background-image: url("../images/GalacticThronesSplash.jpeg"); /* This applies to the header */
  background-size: 100%;
}
.header a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #red;
  color: black;
}

/* Style the active/current link */
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

/* New rule for the full-page splash background, used by coming_soon.html */
.splash-background {
    background-image: url('../images/GalacticThronesSplash.jpeg'); /* This is the correct path for coming_soon.html */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Puts it behind other content */
}

.body { /* This applies to the body tag, if you use it for the whole page */
    min-height: 100%;
    background-image: url("../images/GalacticThronesSplash.jpeg");
    background-color: dodgerblue;
}

* Existing styles for the login box (remains unchanged as it's a separate class) */
.login-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    max-width: 400px;
    width: 90%;
    margin: 20px auto;
}
.login-container label, .login-container a {
    color: #eee;
}
.login-container input[type="text"],
.login-container input[type="password"],
.login-container input[type="current-password"] {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    width: calc(100% - 16px);
    margin-bottom: 10px;
}
.login-container input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}
.login-container input[type="submit"]:hover {
    background-color: #0056b3;
}
