
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      margin: 0;
      padding: 1rem;
      background: #0b0d17;
      color: #f4f6fb;
    }
    h1, h2 {
      color: #ffd700;
    }
    section {
      margin-bottom: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      background: rgba(16, 18, 28, 0.9);
    }
    form {
      display: grid;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    label {
      font-weight: 600;
      font-size: 0.9rem;
    }
    input, textarea {
      width: 100%;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: #111520;
      color: #f8fbff;
      font-size: 0.95rem;
      padding: 0.5rem 0.75rem;
    }
    button {
      width: fit-content;
      padding: 0.6rem 1.2rem;
      border: none;
      border-radius: 6px;
      background: linear-gradient(135deg, #ff8c00, #ff3d00);
      color: #050505;
      font-weight: 700;
      cursor: pointer;
    }
    pre {
      background: #0a0c12;
      padding: 0.75rem;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      max-height: 12rem;
      overflow: auto;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }
    thead {
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.7);
    }
    td, th {
      padding: 0.45rem 0.25rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    th.sortable {
      cursor: pointer;
      user-select: none;
      position: relative;
      padding-right: 1.4rem;
    }
    th.poster-col, td.poster-col {
      width: 56px;
      text-align: center;
    }
    img.poster-thumb {
      width: 48px;
      height: auto;
      border-radius: 6px;
      display: inline-block;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 2px 6px rgba(0,0,0,0.6);
    }
    td.poster-col a { display:inline-block; }
    td.poster-col a img.poster-thumb { cursor: pointer; }
    /* Title link & readability styles for movie title column */
    .movieTable td a.movie-link, .movieTable td span.movie-link {
      color: #ffd700; /* gold */
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      max-width: 90%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 0.96rem;
      line-height: 1.15;
      text-shadow: 0 1px 0 rgba(0,0,0,0.55);
    }
    .movieTable td a.movie-link:hover,
    .movieTable td a.movie-link:focus {
      color: #ffd88b;
      text-decoration: underline;
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 183, 71, 0.08);
      border-radius: 6px;
    }
    .movieTable td a.movie-link:visited {
      color: #ffd88b;
    }
    /* Align title next to poster with a little spacing */
    td.poster-col + td { padding-left: 0.6rem; }
    .movieTable td { vertical-align: middle; }
    th.sortable::after {
      content: '\2195'; /* up/down arrow */
      position: absolute;
      right: 0.4rem;
      opacity: 0.7;
      font-size: 0.85rem;
      transform: translateY(-50%);
      top: 50%;
      transition: transform 0.15s ease, opacity 0.15s ease;
    }
    th.sortable.sort-asc::after {
      content: '\2191';
    }
    th.sortable.sort-desc::after {
      content: '\2193';
    }
    tbody tr:hover {
      background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03));
    }
    tbody tr:nth-child(odd) {
      background: rgba(255,255,255,0.01);
    }
    table.movieTable {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
    }
    .movieTable thead {
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    }
    .pill {
      display: inline-flex;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.2);
    }
