:root {
     --textColor: rgb(60, 167, 241); 
     --backgroundColor: rgb(31,31,31);
}

body {
     background: var(--backgroundColor);
     color: var(--textColor);
     display: flex;
     flex-direction: column;
     align-items: center;
}

th, td {
     border: 1px solid var(--textColor);
     padding: 8px;
}

.ratings-table {
     border-collapse: collapse;
     margin-top: 1rem;
     width: 100%;
     text-align: center;
     font-family: sans-serif;
}

.hidden {
     display: none;
}

.movie-title-input {
  width: 95%;
  padding: 6px;
  font-size: 14px;
}

/* Missing ratings (movie exists, not current movie) */
.ratings-table td.missing-rating {
  background-color: #4a1e1e; /* dark muted red */
}