.main-content {
  display: grid;
  position: relative;
  background-color: #eee;
  top: 15px;
  left: 90px;
  transition: all 0.5s ease;
  width: calc(100% - 100px);
  padding: 1rem;
  z-index: 100;
  border-radius: 20px;
  margin-bottom: 30px;
}

.wip-popup {
  display: none;
  position: fixed;
  z-index: 10000;
  height: 130px;
  width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  padding-top: 5px;
  border-width: 1px;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.wip-background{
  display: none;
  position: fixed;
  z-index: 1003;
  height: 100%;
  width: 100%;
  background-color: #eeeeeecc;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}

.dark-mode .wip-background {
  background-color: rgba(95, 95, 95, 0.8);
}

.dark-mode .wip-popup {
  background-color: rgb(119, 119, 119);
  color: white;
}

body {
  transition: all 0.5s ease;
}

.dark-mode {
  background-color: rgb(95, 95, 95);
}

.dark-mode .main-content {
  background-color: rgb(119, 119, 119);
  color: white;
}

.content-preview {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: white;
  transition: all 0.5s ease;
  min-height: fit-content;
  padding-bottom: 15px;
}

.dark-mode .content-preview {
  background-color: rgb(95, 95, 95);

}

.content-preview:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.content-thumb {
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.content-title {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.content-info {
  padding-right: 3px;
  width: 100%;
  font-size: 14px;
}

.content-info-grid {
  grid-template-columns: 50px 1fr;
  grid-auto-flow: column;
  margin-left: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;	
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.content-info:hover .content-title {
  cursor: pointer;
  text-decoration: underline;
}

.thumbnail-row {
  margin-bottom: 8px;
  position: relative;
}