@font-face {
  font-family: "AnonymousB";
  src: url("fonts/Anonymous Pro Minus B.ttf");
}
body {
  text-transform: uppercase;
  background-color: #000;
  font-family: "AnonymousB";
  font-weight: 700;
  color: #c5c5c5;
  overflow-x: hidden;
  min-width: 550px;
}

.main-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 5px 0px 20px 0px;
}

.media-player-container {
  width: 69%;
  display: flex;
  flex-direction: column;
  position: fixed;
  cursor: default;
  z-index: 100;
  background-color: #000;
  border-radius: 20px;
  border-color: #696969;
  border-style: solid;
  border-width: 1px;
  padding: 20px;
}

.audio-player-container {
  height: 135px;
}

.audio-player {
  width: 100%;
}

.video-player-container {
  height: 410px;
}

.video-player {
  width: 100%;
  max-height: 250px;
  padding-bottom: 20px;
}

.image-player-container {
  height: 522px;
}

.image-player {
  max-width: 100%;
  max-height: 447px;
  object-fit: contain;
}

.media-lightbox {
  width: 100%;
  height: 100vh;
  z-index: 10;
  position: fixed;
  margin: 0;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  cursor: pointer;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

.media-item-title {
  left: 80px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
  max-width: 420px;
  min-width: 200px;
}

.media-item-title-container {
  flex: 20%;
  display: flex;
}

.line-item-container {
  flex-direction: column;
  background-color: #000;
  display: flex;
  width: 100%;
  user-select: none;
}

.line-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 8px;
  box-sizing: border-box;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #939393;
}

.line-item:hover {
  background-color: #1b1b1b;
  color: #faff78;
  cursor: pointer;
}

.line-item-title {
  flex: 20%;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.line-item-date {
  flex: 1 0 10%;
  display: flex;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.line-item-size {
  flex: 1 0 5%;
  display: flex;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.line-item-size::after {
  content: "MB";
}

.line-item-type {
  flex: 1 0 10%;
  display: flex;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

.line-item-download-button {
  min-width: 96px;
  height: 25px;
  border-radius: 5px;
  color: #000;
  background-color: #fff;
  text-align: center; /* Centers text inside the button */
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  vertical-align: middle;
  justify-content: space-evenly;
  font-weight: 700;
  font-size: 10px;
  margin: auto;
  margin-right: 10px;
}

.line-item-download-button:hover {
  background-color: #faff78;
  cursor: pointer;
}

.line-item-delete-button {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  color: #ffffff;
  background-color: #ff0000;
  text-align: center; /* Centers text inside the button */
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  vertical-align: middle;
  justify-content: space-evenly;
  font-weight: bold;
  font-size: 10px;
  margin: auto;
  margin-right: 10px;
}

.line-item-delete-button:hover {
  background-color: #690000;
  cursor: pointer;
}

.line-item-menu {
  width: 120px;
  right: 0px;
}

.fill-bar {
  cursor: pointer;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.fill-bar-background {
  background-color: #000;
  width: 100%;
  height: 20px;
  position: absolute;
  z-index: 0;
}

.fill-bar-foreground {
  z-index: 10;
  width: 100%;
  background-color: #fff;
  align-items: stretch;
  position: absolute;
  z-index: 1;
}

.scrub-bar {
  cursor: pointer;
  width: 100%;
  height: 20px;
  position: relative;
}

.scrub-bar-background {
  background-color: #696969;
  width: 100%;
  height: 2px;
}

.scrub-bar-foreground {
  z-index: 10;
  width: 100%;
  height: 2px;
  background-color: #fff;
  align-items: stretch;
}

.volume-bar {
  width: 80px;
  height: 20px;
}

.volume-bar-background {
  background-color: #000;
  width: 100%;
  height: 20px;
}

.volume-bar-foreground {
  z-index: 10;
  width: 100%;
  height: 20px;
  background-color: #fff;
  align-items: stretch;
}

.timeline-view {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-view {
  width: 100%;
  display: grid;
}

.player-info-view {
  width: 100%;
  display: grid;
  height: 70px;
}

.player-info-view-bottom-row {
  width: 100%;
  display: flex;
}

.player-info-view-media-info-view {
  height: 80px;
  width: 100%;
  justify-self: start;
}

.play-pause-button {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.play-pause-button svg {
  width: 100%;
  height: 100%;
  display: block;
}

.play-head {
  z-index: 20;
  background-color: #696969;
}

.current-time-label {
  height: 20px;
  margin-right: 4px;
  cursor: default;
}

.duration-label {
  height: 20px;
  margin-left: 4px;
  cursor: default;
}
