:root {
  --interface-height: 55px;
  --column-width: 320px;
  --p-m: 1.5rem;
  --p-s: 0.5rem;
  --p-micro: 0.25rem;
  --r-m: 0.5rem;
  --aqua: #7FDBFF;
  --blue: #0074D9;
  --navy: #001F3F;
  --teal: #39CCCC;
  --green: #2ECC40;
  --olive: #3D9970;
  --lime: #01FF70;
  --yellow: #f0c61c;
  --orange: #FF851B;
  --red: #FF4136;
  --fuchsia: #F012BE;
  --purple: #B10DC9;
  --maroon: #85144B;
  --white: #FFFFFF;
  --silver: #DDDDDD;
  --gray: #AAAAAA;
  --black: #111111;
  --color-1: #F5EBE0;
  --color-2: #D6CCC2;
  --color-2-glass: rgba(214, 204, 194, 0.90);
  --color-3: #D5BDAF;
  --color-4: var(--maroon);
  --color-5: #423E37;
}

h1, #trz-navigation-container {
  background-color: var(--color-2-glass);
  backdrop-filter: blur(10px);
}

.trz-bt-primary, .trz-bt-secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  border-width: 1px;
  border-style: solid;
  font-size: 1rem;
}

.list-search > li.trz-selected {
  background-color: #444;
  color: #eee;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  margin: 0;
  padding: 0;
  font-size: 17px;
}

body {
  margin: 0;
  padding: 0;
  font-family: helvetica, arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  background-color: var(--color-1);
  color: var(--color-5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h1 {
  --title-padding: var(--p-m);
  z-index: 1;
  position: sticky;
  top: 0;
  margin-top: calc(var(--title-padding) * -1);
  margin-left: calc(var(--title-padding) * -1);
  margin-right: calc(var(--title-padding) * -1);
  padding: calc(var(--p-m) * 1.5) var(--title-padding) calc(var(--p-m) * 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-weight: bold;
}

h2 {
  margin-bottom: 0.25rem;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

input[type=text],
textarea,
select {
  font-size: 18px;
  padding: 0.4rem 0.6rem;
}

input[type=text],
textarea {
  width: 100%;
}

.trz-genres {
  margin: 1rem 0 0 0;
}

.trz-genre {
  display: inline-block;
  margin: 0 0.25em 0 0;
}
.trz-genre:after {
  content: ",";
}
.trz-genre:last-child:after {
  content: none;
  display: none;
}

.trz-bt-primary {
  background-color: var(--yellow);
  color: #444;
  border-color: white;
}

.trz-bt-secondary {
  background-color: var(--color-3);
  color: #444;
  border-color: white;
}

.trz-filter-options {
  margin-top: var(--p-s);
  margin-left: -4px;
}

.data-row {
  font-size: 80%;
  padding-top: 0.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.data-row > span {
  display: inline-block;
  margin-right: calc(5px + 0.25em);
}
.data-row > span:last-child {
  margin-right: 0;
}

.nice-to-have, .trz-filter-options {
  font-size: 80%;
}

.fa-solid {
  position: relative;
  top: -1px;
  font-size: 70%;
  color: #999;
  margin-right: calc(2px + 0.15em);
}

.message-text.error {
  color: #c0392b;
  font-weight: bold;
  display: block;
  padding: 1rem 0;
}

#trz-auth-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--color-1);
}

.trz-auth-container {
  width: 100%;
  max-width: 360px;
  padding: var(--p-m);
}
.trz-auth-container h1 {
  text-align: center;
  position: static;
  margin: 0 0 var(--p-m) 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}
.trz-auth-container form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trz-auth-container input[type=text],
.trz-auth-container input[type=password] {
  padding: 0.6rem;
  border: 1px solid var(--color-3);
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: inherit;
}
.trz-auth-container button[type=submit] {
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}

.trz-auth-switch {
  text-align: center;
  font-size: 0.9rem;
  margin: 0;
}
.trz-auth-switch a {
  color: var(--color-4);
  text-decoration: underline;
  cursor: pointer;
}

#trz-user-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--p-s) var(--p-m);
  background-color: var(--color-5);
  color: var(--color-1);
  font-size: 0.85rem;
}
#trz-user-container #trz-username {
  font-weight: bold;
}
#trz-user-container #trz-my-movies-btn {
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--color-3);
  border-radius: 0.25rem;
  background-color: var(--color-4);
  color: var(--color-1);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
#trz-user-container #trz-my-movies-btn:hover {
  opacity: 0.85;
}
#trz-user-container #trz-logout {
  margin-left: auto;
  color: var(--color-1);
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}
#trz-user-container #trz-logout:hover {
  opacity: 1;
}

.trz-auth-error {
  background-color: #fdecea;
  color: #c0392b;
  padding: var(--p-s) var(--p-m);
  border-radius: 0.25rem;
  font-size: 0.9rem;
  margin-bottom: var(--p-s);
}

#trz-page {
  width: 100vw;
}

#trz-navigation-container {
  z-index: 1;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--interface-height);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.25);
}
#trz-navigation-container ul {
  margin: 0;
  padding: 8px 0 0 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
#trz-navigation-container li:first-child {
  margin-left: 1rem;
}
#trz-navigation-container li:last-child {
  margin-right: 1rem;
}
#trz-navigation-container a {
  display: block;
  padding: 0.6rem 0.8rem 0.5rem 0.8rem;
  text-decoration: none;
  border-radius: 0.25rem;
  color: var(--color-5);
  font-size: 18px;
}
#trz-navigation-container a.trz-selected {
  background-color: var(--color-2);
  box-shadow: inset -1px 1px 2px rgba(0, 0, 0, 0.25);
}

#trz-section-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}
#trz-section-container section {
  position: relative;
  display: none;
  width: 100%;
  padding: var(--p-m) var(--p-m) 150px var(--p-m);
  background-color: var(--color-1);
}
#trz-section-container section.trz-active {
  display: block;
}

#bt-clear-history {
  z-index: 3;
  position: fixed;
  top: 50px;
  right: var(--p-s);
}

.trz-video {
  margin-top: var(--p-m);
}
.trz-video h4 {
  margin: 0;
}

.list-movies {
  list-style-type: none;
  margin: 0 0 2rem 0;
}
.list-movies > li {
  margin: 0;
  padding: 0.5rem 0 0.5rem 0;
  border-bottom: 1px solid #666;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
}
.list-movies > li:last-child {
  border-bottom: 0;
}
.list-movies .text-wrapper {
  margin-top: 0.25rem;
}
.list-movies .title {
  margin: 0;
}
.list-movies .release-date {
  margin: 0.25rem 0 0 0;
}

.list-search > li:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.list-search > li.trz-selected {
  padding-left: var(--p-s);
}
.list-search > li.trz-selected:hover {
  background-color: #422;
}
.list-search .image-wrapper {
  width: 50px;
  min-width: 50px;
  margin-right: 0.5rem;
}
.list-search .title {
  font-size: 1rem;
}

.list-extended > li {
  flex-wrap: wrap;
}
.list-extended > li:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.list-extended > li.trz-selected {
  background-color: rgba(255, 255, 255, 0.5);
}
.list-extended > li.trz-selected:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.list-extended .image-wrapper {
  width: 80px;
  min-width: 80px;
  margin-right: 10px;
}
.list-extended .text-wrapper {
  width: calc(100% - 90px);
}
.list-extended .title {
  font-size: 1.25rem;
}
.list-extended h4 {
  margin: 1rem 0 0.25rem 0;
}
.list-extended p {
  margin: 0.25rem 0;
}

ul.trz-person-list {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
ul.trz-person-list li {
  width: 32%;
  min-width: 75px;
  margin-right: 2%;
  margin-bottom: 2%;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
}
ul.trz-person-list li:nth-child(3n) {
  margin-right: 0;
}

.trz-person-clickable {
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.trz-person-clickable:hover {
  opacity: 0.8;
}

.trz-person-name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  padding: var(--p-s) var(--p-micro);
}

.trz-person-character {
  margin: 0;
  padding: 0 var(--p-micro) var(--p-micro);
}

.trz-save-panel {
  margin: var(--p-m) 0;
  padding: var(--p-m);
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--r-m);
}

.trz-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--p-s);
}
.trz-rating-row label {
  font-size: 0.9rem;
}

.trz-stars-container {
  display: inline-flex;
  gap: 0.25rem;
}

.trz-star {
  color: var(--yellow);
  font-size: 1.3rem;
  position: static;
  top: auto;
  margin-right: 0;
}

.trz-star-interactive {
  cursor: pointer;
  transition: transform 0.15s;
}
.trz-star-interactive:hover {
  transform: scale(1.2);
}

.trz-stars-display {
  margin-top: 0.25rem;
}
.trz-stars-display .trz-star {
  font-size: 0.9rem;
}

.trz-comment-input {
  display: block;
  width: 100%;
  padding: var(--p-s);
  margin-bottom: var(--p-s);
  border: 1px solid var(--color-3);
  border-radius: 0.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

.trz-comment-preview {
  font-size: 80%;
  color: #666;
  font-style: italic;
  margin: 0.25rem 0 0 0;
}

.trz-watched-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--p-s);
}
.trz-watched-row label {
  font-size: 0.9rem;
  cursor: pointer;
}
.trz-watched-row input[type=checkbox] {
  cursor: pointer;
}

.trz-watched-badge {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-4);
  margin-top: 0.25rem;
}
.trz-watched-badge i {
  margin-right: 0.15rem;
}

.trz-save-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.trz-bt-save {
  cursor: pointer;
}

.trz-bt-remove {
  cursor: pointer;
}

.trz-bt-danger {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.85rem;
  background-color: #c0392b;
  color: #fff;
}
.trz-bt-danger:hover {
  background-color: #a93226;
}

#trz-save-popup-overlay,
#trz-my-movies-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

#trz-save-popup,
#trz-my-movies-popup {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  background-color: var(--color-1);
  border-radius: var(--r-m);
  padding: var(--p-m);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#trz-save-popup-close,
#trz-my-movies-popup-close {
  position: absolute;
  top: var(--p-s);
  right: var(--p-s);
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-5);
  padding: 0.25rem 0.5rem;
  z-index: 1;
}
#trz-save-popup-close:hover,
#trz-my-movies-popup-close:hover {
  opacity: 0.7;
}

.trz-popup-title {
  margin: 0 0 var(--p-s) 0;
  font-size: 1.2rem;
  padding-right: 2rem;
}

.trz-save-popup-movies {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trz-save-popup-movie-item {
  display: flex;
  align-items: center;
  gap: var(--p-s);
  padding: var(--p-s);
  cursor: pointer;
  border-radius: 0.25rem;
}
.trz-save-popup-movie-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
.trz-save-popup-movie-item img {
  width: 40px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.15rem;
}

.trz-save-popup-movie-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trz-save-popup-movie-title {
  font-size: 0.85rem;
  font-weight: bold;
}

.trz-action-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--p-m);
}

.trz-bt-action {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--color-3);
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--color-5);
}
.trz-bt-action i {
  margin-right: 0.3rem;
}
.trz-bt-action:hover {
  background: rgba(0, 0, 0, 0.1);
}

#trz-person-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

#trz-person-popup {
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  background-color: var(--color-1);
  border-radius: var(--r-m);
  padding: var(--p-m);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#trz-person-popup-close {
  position: absolute;
  top: var(--p-s);
  right: var(--p-s);
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-5);
  padding: 0.25rem 0.5rem;
  z-index: 1;
}
#trz-person-popup-close:hover {
  opacity: 0.7;
}

.trz-popup-loading {
  text-align: center;
  padding: var(--p-m);
  color: var(--gray);
}

.trz-popup-header {
  display: flex;
  gap: var(--p-m);
  margin-bottom: var(--p-m);
}

.trz-popup-photo {
  width: 120px;
  min-width: 120px;
  border-radius: var(--r-m);
  object-fit: cover;
}

.trz-popup-header-info h2 {
  margin: 0 0 var(--p-s) 0;
  font-size: 1.3rem;
}

.trz-popup-department {
  margin: 0 0 var(--p-s) 0;
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trz-popup-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-5);
  line-height: 1.4;
}

.trz-popup-bio {
  margin-bottom: var(--p-m);
}
.trz-popup-bio p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.trz-popup-read-more {
  display: inline-block;
  margin-top: var(--p-s);
  font-size: 0.85rem;
  color: var(--color-4);
  cursor: pointer;
}

.trz-popup-filmography-title {
  margin: 0 0 var(--p-s) 0;
  font-size: 1.1rem;
}

.trz-popup-filmography {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--p-s);
}
.trz-popup-filmography li {
  width: calc(33.33% - 0.35rem);
  cursor: pointer;
  text-align: center;
  border-radius: 0.25rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease;
}
.trz-popup-filmography li:hover {
  transform: scale(1.03);
}
.trz-popup-filmography li img {
  width: 100%;
  display: block;
}

.trz-popup-no-poster {
  width: 100%;
  aspect-ratio: 2/3;
  background-color: var(--color-2);
}

.trz-popup-movie-title {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
  padding: var(--p-micro) var(--p-micro) 0;
  font-weight: bold;
}

.trz-popup-movie-year {
  display: block;
  font-size: 0.7rem;
  color: var(--gray);
  padding: 0 var(--p-micro) 0;
}

.trz-popup-movie-rating {
  display: block;
  font-size: 0.7rem;
  color: var(--color-4);
  padding: 0 var(--p-micro) var(--p-micro);
}
.trz-popup-movie-rating i {
  font-size: 0.6rem;
}

/*# sourceMappingURL=styles.css.map */
