@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .left-pane-image-container div.loading, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.side-navigation {
  position: fixed;
  top: 60px;
  left: 0;
  width: 260px;
  height: 100%;
  background: white;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 99999;
}
.side-navigation a {
  display: grid;
  min-width: 38px;
}
.side-navigation svg {
  width: 25px;
  height: 25px;
}
.side-navigation svg path {
  stroke: black;
}
.side-navigation .nav-item {
  padding: 10px 20px;
  margin: 0 10px 10px 10px;
  border-radius: 12px;
}
.side-navigation .nav-item.active {
  background-color: #f6f0f8;
}
.side-navigation .nav-item.logout {
  margin-top: auto;
  margin-bottom: 50px;
}
.side-navigation .nav-item .nav-text {
  margin: 3px 0 0 16px;
  font-family: "Poppins", sans-serif;
}
.side-navigation .nav-item .nav-text:hover {
  color: #6b0092;
}
.side-navigation .nav-item img {
  width: 30px;
}
.side-navigation .button-logout {
  width: 100%;
  padding: 10px 30px;
  border: none;
  border-radius: 10px;
  background-color: #6b0092;
  color: white;
  cursor: pointer;
  outline: none;
}
.side-navigation .button-logout button {
  color: white;
}
.side-navigation .button-logout:hover {
  background-color: #940cc5;
}
.side-navigation .button-logout:focus {
  outline: none;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .left-pane-image-container div.loading, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.primary-button, .upload .file-upload-container .lower label, .login-btn,
.actions-btn {
  background-color: #8223F8;
  color: #ffffff;
  padding: 6px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-button:hover, .upload .file-upload-container .lower label:hover, .login-btn:hover,
.actions-btn:hover {
  background-color: #6803e4;
}

.primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  opacity: 0.8;
  pointer-events: none;
}

.header-logo {
  display: flex;
  align-items: center;
  font-size: 25px;
  color: #6b0092;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.nav-text {
  margin: 12px 0 0 10px;
  font-size: 20px;
}

.top-navigation {
  position: fixed;
  top: -1rem;
  left: 0;
  z-index: 99999;
  display: flex;
  width: 100vw;
  height: 6rem;
  padding: 15px 10px 0 30px;
  overflow: hidden;
  background: #ffffff;
}
.top-navigation .section {
  display: flex;
  flex-basis: 20%;
  align-items: center;
}
.top-navigation .section.button-section {
  justify-content: flex-end;
  gap: 10px;
}
.top-navigation .section .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.top-navigation .section .header-btn {
  display: flex;
  height: 40px;
  margin-right: 30px;
  justify-content: flex-end;
}
.top-navigation .profile-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-section {
  font-weight: 700;
  font-size: 1.3rem;
  color: #6b0092;
}

.top-search-bar {
  flex-basis: 60%;
  margin-left: 0;
  display: flex;
  align-items: center;
}
.top-search-bar .search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 63%;
  padding: 8px 16px;
  overflow: hidden;
  margin: auto;
}
@media (max-width: 448px) {
  .top-search-bar .search-input-container {
    margin: 0;
  }
}
.top-search-bar .search-input-container {
  background: #fafafa;
  border: 2px solid #c5c5c5;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.top-search-bar .search-input-container:hover {
  background: #fafafa;
  border-color: #c5c5c5;
}
.top-search-bar .search-input-container:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: #8223f8;
  transform: translateY(-1px);
}
.top-search-bar .search-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: #a5a5a5;
  font-weight: 700;
}
.top-search-bar .search-input {
  flex: 1;
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: none;
  outline: none;
  color: #252525;
  font-size: 14px;
  font-weight: 400;
}
.top-search-bar .search-input::placeholder {
  color: #c5c5c5;
}
.top-search-bar .clear-btn {
  padding: 4px;
  background: none;
  border: none;
  border-radius: 50%;
  color: #c5c5c5;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.top-search-bar .clear-btn svg {
  width: 14px;
  height: 14px;
}
.top-search-bar .clear-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.top-search-bar .clear-btn.show {
  opacity: 1;
  visibility: visible;
}

.dark-theme .top-search-bar .search-input-container {
  background: rgba(0, 0, 0, 0.2);
}
.dark-theme .top-search-bar .search-input-container:hover {
  background: rgba(0, 0, 0, 0.3);
}
.dark-theme .top-search-bar .search-input-container:focus-within {
  background: rgba(0, 0, 0, 0.4);
}

.menu-icon {
  font-size: 30px;
  display: none;
}

img {
  cursor: pointer;
}

button {
  cursor: pointer;
}

@media (max-width: 768px) {
  .top-search-bar {
    margin: 0 8px;
    max-width: none;
  }
  .top-search-bar .search-input-container {
    padding: 3px 12px;
  }
  .top-search-bar .search-input {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .top-navigation {
    padding: 15px 10px 0;
    height: 5rem;
  }
  .top-navigation .section {
    flex-basis: 15%;
  }
  .top-navigation .section .logo {
    width: 100%;
    justify-content: space-between;
  }
  .top-navigation .section .logo img {
    width: 40px;
  }
  .top-navigation .section .header-btn {
    margin-right: 0;
  }
  .top-navigation .section .header-btn button {
    padding: 6px 15px;
    font-size: 14px !important;
  }
  .top-navigation .top-search-bar {
    flex-basis: 100% !important;
  }
  .top-navigation .profile-btn {
    display: none;
  }
  .top-navigation .logo-section {
    width: 100vw !important;
    padding-right: 5px;
  }
  .top-navigation .button-section {
    width: 0 !important;
  }
}
@media (max-width: 480px) {
  .top-search-bar .search-icon {
    width: 27px;
    height: 27px;
  }
}
@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .left-pane-image-container div.loading, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.feed-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 115px;
}
.feed-container .feed {
  overflow-y: scroll;
  -ms-scroll-snap-type: mandatory;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  max-height: calc(var(--real-vh, 1vh) * 100 - 150px);
}
.feed-container .feed .post-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.feed-container .feed .post-container .post {
  height: calc(var(--real-vh, 1vh) * 100 - 150px);
  width: 100vw;
  overflow: hidden;
  position: relative;
  max-width: 25vw;
  scroll-snap-align: start;
  border-radius: 5px;
}
.feed-container .feed .post-container .post video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: fill;
}
.feed-container .feed .post-container .post .video-click-container {
  position: absolute;
  z-index: 8;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: grid;
  place-content: center;
}
.feed-container .feed .post-container .post .video-click-container svg {
  height: 64px;
  width: 64px;
  opacity: 0;
}
.feed-container .feed .post-container .post .video-click-container.paused svg {
  opacity: 1;
}
.feed-container .feed .post-container .post .post-right-sidebar {
  position: absolute;
  width: 48px;
  height: 300px;
  right: 10px;
  bottom: 70px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-avatar-container {
  position: relative;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-avatar-container span.flic-avatar {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-feature-settings: "tnum";
  position: relative;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  line-height: 32px;
  border-radius: 50%;
  border-color: rgb(255, 255, 255);
  border-width: 1px;
  width: 48px;
  height: 48px;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-avatar-container span.flic-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-avatar-container div.icon-container {
  --size: ($authorAvatarSize / 2);
  height: var(--size);
  width: var(--size);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-avatar-container div.icon-container div.follow-plus {
  font-size: 0;
  text-align: center;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-avatar-container div.icon-container div.follow-plus img {
  width: 24px;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-toolbar {
  position: relative;
  z-index: 1000;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 20px;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-toolbar .tool {
  position: relative;
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: column;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-toolbar .tool * {
  pointer-events: none;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-toolbar .tool svg {
  width: 40px;
  height: 40px;
  opacity: 0.9;
  color: #fff;
}
.feed-container .feed .post-container .post .post-right-sidebar .sidebar-toolbar .tool strong {
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  text-align: center;
  font-weight: normal;
  display: block;
  line-height: 16px;
  font-size: 13px;
}
.feed-container .feed .post-container .post .post-bottom-section-container {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  height: 180px;
  font-size: 14px;
  z-index: 10;
  position: absolute;
  width: 100vw;
  bottom: 0;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 10px 12px;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left {
  pointer-events: auto;
  max-width: 274px;
  overflow: hidden;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .username, .feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .username span, .feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .username a, .feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .description span, .feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .description a {
  color: rgb(255, 255, 255);
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .username {
  font-weight: 600;
  font-size: 17px;
  color: rgb(255, 255, 255);
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .username .verified {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  width: 14px;
  height: 14px;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .description {
  font-size: 15px;
  line-height: 1.2;
  word-break: break-all;
  font-weight: normal;
  white-space: normal;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .music {
  position: relative;
  display: flex;
  font-weight: normal;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .music .music-icon {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAArtJREFUaAXtmj9oFEEUxu8SoxBUohAlQSNiCv9UJiBWVqawEbuAoIWiYCFYpUolgo2VTRori9Q2tqJNtBNETTBeSiGBdAFjwKy/L9yeG3b2Zv/MzkWZB9/N3cy7977vvd25Y+4ajf/Emv+ijiiKxuB9Cqw2m81v0rCnhUD4JBwvJHCe58IhENsLxNzbE0LaFRbBJOlzvE4Sjombxmv7TLN1zEFWRYsrHJM2VbhM+knnQjIIq9JFKlxUzEBlIRAfJus0mAAirCofBF6tkhBEaOd4D0ZqZr1N/BXwBUyBQbDLKgkh0iPgUkSS8Fdii7iwxM60ydigeD8YnAs5o+AlLElYRGPSHcJFY1btiG37FuFWgmhMujThLIFVhZjiLjL5pE3eOWFTQs3VIaTF9TyflbCu+b66AvuOG4T4rrgtX+iIrUK+10NHfFfcli90xFYh3+uhI74rbssXOmKrkO/10BHfFbflCx2xVcj3euiI74rb8oWO2Crke72OU5TCGjg9PMGb7gIddI8DnV5mnZkdZy1lPRXSPgB/CqtbYH+KXYGJnglBxDF4LoCyx667ZKaEkOAwHnfARaA2j4F+YLKjpsmcc3P4ORGhfB0hCFBrZ8FDMARqM3LpHrjhMsGOEAJrfA2uugzeJdZZ1lxu/VEcbMajCOnb0INDW42FPHAYNE+oTzit53HM6fO2r31zax93ZZEtEKf1v/B5bPPLuf6SeEvqyE+gH2Rc2VqeQCR/jt+zPL5dfHRf/72a6Mo74MpudkmcWiLpJfAKbBcg8AHf66Dz6b/zhIkrZHgDsj4vUgQyJj4yf5lqb2WsZ07DYZRF7WbjwPQVRffUd7BMfI1mI9BtsAXK2mfeqH829N4gchrMgU2Q11o43gcHeqmgc40lSUDqCK/1Dwa12fQVRZ8D+rV2GSzS6t+MwVxU4A+ZcZNXUfQErAAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 13px 13px;
  width: 15px;
  height: 15px;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .music .music-text-container {
  position: relative;
  margin-left: 32px;
  font-size: 15px;
  overflow: hidden;
  color: rgb(255, 255, 255);
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .music .music-text-container .music-text {
  margin-left: 6px;
  display: flex;
  width: max-content;
}
.feed-container .feed .post-container .post .post-bottom-section-container .post-bottom-section .bottom-left .music .music-text-container .music-text div {
  padding-right: 20px;
}

.post:last-child, .feed.post:last-of-type {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .feed-container {
    padding-top: 80px;
  }
  .feed-container .feed {
    max-height: calc(var(--real-vh, 1vh) * 100 - 150px);
  }
  .feed-container .feed .post-container {
    border-radius: 0px;
  }
  .feed-container .feed .post-container .post {
    height: calc(var(--real-vh, 1vh) * 100 - 150px);
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .feed-container {
    padding-top: 75px;
  }
  .feed {
    max-height: calc(var(--real-vh, 1vh) * 100 - 140px);
  }
  .post-container {
    border-radius: 5px;
    max-width: 95vw;
  }
  .post {
    height: calc(var(--real-vh, 1vh) * 100 - 140px);
  }
}
.bottom-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 12px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
  max-height: 70px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
  min-width: 60px;
  position: relative;
}
.bottom-nav-item:hover {
  background-color: #f9fafb;
}
.bottom-nav-item.active .nav-icon-container {
  transform: scale(1.1);
}
.bottom-nav-item.active .nav-icon-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}
.bottom-nav-item.active .nav-icon.profile-image {
  filter: none !important;
  border-color: #8223F8;
  box-shadow: 0 0 0 2px rgba(130, 35, 248, 0.2);
}
.bottom-nav-item .nav-icon.profile-image {
  filter: none !important;
}

.nav-icon-container {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.nav-icon-container:not(:has(.profile-image)) svg {
  color: #000000 !important;
}

.nav-icon {
  width: 46px;
  height: 46px;
  transition: all 0.2s ease;
}
.nav-icon.profile-image {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  filter: none;
}

.bottom-navigation .bottom-nav-item[data-item-id=subverses] .nav-icon {
  width: 32px;
  height: 32px;
}

body {
  padding-bottom: 0px;
}

.admin-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.admin-panel {
  width: 100%;
  background: white;
  border-radius: 20px 20px 0 0;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  animation: slideUp 0.3s ease-out forwards;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-panel-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.admin-panel-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: #6b7280;
  font-size: 24px;
}
.admin-panel-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}
.admin-panel-close:active {
  transform: scale(0.95);
}

.admin-panel-content {
  padding: 16px 20px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  overflow-y: auto;
  max-height: calc(70vh - 80px);
}
.admin-panel-content::-webkit-scrollbar {
  width: 6px;
}
.admin-panel-content::-webkit-scrollbar-track {
  background: #f9fafb;
}
.admin-panel-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.admin-panel-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.admin-panel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  min-height: 100px;
}
.admin-panel-item:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.admin-panel-item:active {
  transform: translateY(0);
}
.admin-panel-item.active {
  background-color: #ede9fe;
}
.admin-panel-item.active .admin-panel-icon-container {
  background-color: #f9fafb;
  color: white;
}
.admin-panel-item.active .admin-panel-icon-container .admin-panel-icon {
  color: white !important;
}
.admin-panel-item.active .admin-panel-icon-container svg {
  color: white !important;
}
.admin-panel-item.active .admin-panel-label {
  color: #8223F8;
  font-weight: 600;
}

.admin-panel-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.admin-panel-icon-container svg {
  color: #000000 !important;
}

.admin-panel-icon {
  width: 28px;
  height: 28px;
  color: #000000 !important;
  transition: all 0.2s ease;
  filter: brightness(0);
}
.admin-panel-icon.admin-panel-icon-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0);
}

.admin-panel-label {
  font-size: 14px;
  color: #374151;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
}

@media (max-width: 480px) {
  .bottom-navigation {
    padding: 6px 0 10px 0;
    height: 65px;
  }
  .nav-icon-container {
    width: 44px;
    height: 44px;
  }
  .bottom-nav-item .nav-icon.profile-image {
    filter: none !important;
  }
  .bottom-nav-item[data-item-id=subverses] .nav-icon {
    width: 32px;
    height: 32px;
  }
  .nav-icon-container:not(:has(.profile-image)) svg {
    color: #000000 !important;
  }
  .admin-panel {
    max-height: 75vh;
  }
  .admin-panel-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px 16px 24px;
  }
  .admin-panel-item {
    padding: 16px 8px;
    min-height: 90px;
  }
  .admin-panel-icon-container {
    width: 48px;
    height: 48px;
  }
  .admin-panel-icon {
    width: 24px;
    height: 24px;
    color: #000000 !important;
    filter: brightness(0);
  }
  .admin-panel-icon.admin-panel-icon-image {
    width: 20px;
    height: 20px;
    filter: brightness(0);
  }
  .admin-panel-icon-container svg {
    color: #000000 !important;
  }
  .admin-panel-label {
    font-size: 12px;
  }
  .admin-panel-header {
    padding: 16px 20px;
  }
  .admin-panel-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .bottom-nav-item .nav-icon {
    width: 28px;
    height: 28px;
  }
  .bottom-nav-item .nav-icon.profile-image {
    width: 36px;
    height: 36px;
    filter: none !important;
  }
}
@media (max-width: 1023px) {
  .bottom-nav-item .nav-icon {
    filter: brightness(0) !important;
    color: #000000 !important;
  }
}
.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999998;
}

.dialog {
  z-index: 999999;
  position: fixed;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(2, 2, 2, 0.06) 0 2px 8px;
}
.dialog .img-container {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  padding: 4px;
  border-radius: 100%;
  background-color: rgb(248, 248, 248);
}
.dialog .img-container img {
  border-radius: 100%;
}
.dialog .info {
  box-sizing: border-box;
  width: 100%;
  padding: 48px 20px 20px;
  text-align: center;
}
.dialog .info .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.dialog .info .description {
  font-weight: 400;
  margin-top: 12px;
  font-size: 15px;
  line-height: 18px;
  color: rgba(22, 24, 35, 0.75);
  text-align: center;
}
.dialog .buttons {
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px 10px;
  text-align: center;
}
.dialog .buttons button {
  width: 100%;
  padding: 0px 40px;
  border: none;
  font-size: 15px;
  line-height: 44px;
}
.dialog .buttons button.primary {
  font-weight: 600;
  border-radius: 10px;
  background-color: #8223F8;
  color: rgb(255, 255, 255);
  transition: background-color 0.3s ease;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.dialog .buttons button.primary:hover {
  background-color: #6803e4;
}
.dialog .buttons button.secondary {
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  margin-top: 2px;
}

.dialog-middle {
  left: 50%;
  bottom: 50%;
  right: unset;
  transform: translate(-50%, 50%);
  width: 310px;
  border-radius: 8px;
}

.dialog-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .left-pane-image-container div.loading, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.left-pane-image-container {
  height: 100%;
  width: 41.6666667%;
  display: none;
}
@media (min-width: 1024px) {
  .left-pane-image-container {
    display: block;
  }
}
.left-pane-image-container div, .left-pane-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d883f7;
}
img.horizontal-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  margin: 0;
  height: auto;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn, .left-pane-image-container div.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn, .left-pane-image-container div.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.primary-button, .upload .file-upload-container .lower label, .login-btn,
.actions-btn {
  background-color: #8223F8;
  color: #ffffff;
  padding: 6px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-button:hover, .upload .file-upload-container .lower label:hover, .login-btn:hover,
.actions-btn:hover {
  background-color: #6803e4;
}

.primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  opacity: 0.8;
  pointer-events: none;
}

.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 1rem 0;
}
.form-group button {
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-family: inherit;
  margin: 0;
  width: 100%;
}
.form-group input, .form-group textarea {
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus, .form-group textarea:focus {
  --tw-border-opacity: 1;
  border: 1px solid #8223f8;
  outline: none;
}
.form-group textarea {
  resize: none;
}
.form-group.submit-button {
  margin-top: 2rem;
}
.form-group.submit-button button {
  background-color: #8223F8;
  border-color: #8223F8;
  border-radius: 10px;
  color: #ffffff;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.form-group.submit-button button svg {
  width: 20px;
}
.form-group.submit-button button:hover {
  background-color: #5600c0;
  border-radius: 10px;
}

.form-group-loading, form.loading .form-group, .form.loading .form-group, .form-group.loading {
  cursor: wait;
}
.form-group-loading input, form.loading .form-group input, .form.loading .form-group input, .form-group.loading input, .form-group-loading .form-group textarea, form.loading .form-group .form-group textarea, .form.loading .form-group .form-group textarea, .form-group.loading .form-group textarea, .form-group .form-group-loading textarea, .form-group form.loading .form-group textarea, .form-group .form.loading .form-group textarea, .form-group .form-group.loading textarea {
  pointer-events: none;
}

.auth-container, .verify-container, .not-found-container {
  display: flex;
  height: auto;
  width: 100%;
  overflow: hidden;
  align-items: center;
}
.auth-container .login-left, .verify-container .login-left, .not-found-container .login-left {
  display: flex;
  position: fixed;
  top: 0;
  width: 43%;
  height: 100vh;
  align-items: center;
  overflow: hidden;
}
.auth-container .login-left-main-img, .verify-container .login-left-main-img, .not-found-container .login-left-main-img {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 60px;
}
.auth-container .login-left-vector-img, .verify-container .login-left-vector-img, .not-found-container .login-left-vector-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.auth-container .forgot-password, .verify-container .forgot-password, .not-found-container .forgot-password {
  height: 100vh;
}
.auth-container .form-container, .verify-container .form-container, .not-found-container .form-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding-bottom: 0rem;
  padding-top: 3rem;
  margin-left: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .auth-container .form-container, .verify-container .form-container, .not-found-container .form-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.auth-container .form-container form, .verify-container .form-container form, .not-found-container .form-container form {
  text-align: center;
  margin-right: auto;
  width: 100%;
  margin-left: 0;
  text-align: left;
  padding: 0 7vw;
}
@media (max-width: 640px) {
  .auth-container .form-container form, .verify-container .form-container form, .not-found-container .form-container form {
    width: 100%;
  }
}
.auth-container .form-container form .big-message-container, .verify-container .form-container form .big-message-container, .not-found-container .form-container form .big-message-container {
  border: 0;
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
  text-align: center;
  margin: 6rem 0 0;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 100;
  color: #8223F8;
}
.auth-container .form-container form .heading-container, .verify-container .form-container form .heading-container, .not-found-container .form-container form .heading-container {
  margin-top: 1vw;
  color: rgb(31, 41, 55);
}
.auth-container .form-container form .heading-container h2, .verify-container .form-container form .heading-container h2, .not-found-container .form-container form .heading-container h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: inherit;
  font-weight: 600;
  text-transform: capitalize;
}
.auth-container .form-container form .heading-container p, .verify-container .form-container form .heading-container p, .not-found-container .form-container form .heading-container p {
  margin-top: 0.75rem;
  color: inherit;
}
.auth-container .form-container form .heading-container p span, .verify-container .form-container form .heading-container p span, .not-found-container .form-container form .heading-container p span {
  margin-left: 0.5rem;
  cursor: pointer;
  color: #8223F8;
}
.auth-container .form-container form .interaction-container, .verify-container .form-container form .interaction-container, .not-found-container .form-container form .interaction-container {
  margin-top: 0rem;
  overflow: hidden;
}
.auth-container .form-container form .interaction-container .forgot-password-container span, .verify-container .form-container form .interaction-container .forgot-password-container span, .not-found-container .form-container form .interaction-container .forgot-password-container span {
  color: #8223F8;
}
.auth-container .form-container form .interaction-container .form-group.many, .verify-container .form-container form .interaction-container .form-group.many, .not-found-container .form-container form .interaction-container .form-group.many {
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.auth-container .form-container form .interaction-container .form-group.many input, .auth-container .form-container form .interaction-container .form-group.many textarea, .verify-container .form-container form .interaction-container .form-group.many input, .verify-container .form-container form .interaction-container .form-group.many textarea, .not-found-container .form-container form .interaction-container .form-group.many input, .not-found-container .form-container form .interaction-container .form-group.many textarea {
  width: 49%;
}
.auth-container .form-container form .interaction-container .form-group.many *:not(:last-child), .verify-container .form-container form .interaction-container .form-group.many *:not(:last-child), .not-found-container .form-container form .interaction-container .form-group.many *:not(:last-child) {
  margin-right: 0;
}
.auth-container .form-container form .interaction-container .forgot-password-container, .verify-container .form-container form .interaction-container .forgot-password-container, .not-found-container .form-container form .interaction-container .forgot-password-container {
  text-align: right;
}
.auth-container .form-container form .interaction-container .forgot-password-container span, .verify-container .form-container form .interaction-container .forgot-password-container span, .not-found-container .form-container form .interaction-container .forgot-password-container span {
  color: #8223F8;
  cursor: pointer;
}
.auth-container .form-container form .interaction-container .legal-links-container, .auth-container .form-container form .interaction-container .copyright, .verify-container .form-container form .interaction-container .legal-links-container, .verify-container .form-container form .interaction-container .copyright, .not-found-container .form-container form .interaction-container .legal-links-container, .not-found-container .form-container form .interaction-container .copyright {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: left;
  margin: 1.5rem 0 0;
}
.auth-container .form-container form .interaction-container .legal-links-container span, .auth-container .form-container form .interaction-container .copyright span, .verify-container .form-container form .interaction-container .legal-links-container span, .verify-container .form-container form .interaction-container .copyright span, .not-found-container .form-container form .interaction-container .legal-links-container span, .not-found-container .form-container form .interaction-container .copyright span {
  color: #8223F8;
  cursor: pointer;
}
.auth-container .form-container form .interaction-container .copyright, .verify-container .form-container form .interaction-container .copyright, .not-found-container .form-container form .interaction-container .copyright {
  text-align: center;
}

.social-login-container {
  margin-top: 1.3rem;
  margin-bottom: 2rem;
}
.social-login-container .google-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.social-login-container .google-signin-button:hover {
  background-color: #f5f5f5;
}
.social-login-container .google-signin-button img {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}
.social-login-container .apple-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}
.social-login-container .apple-signin-button:hover {
  background-color: #f5f5f5;
}
.social-login-container .apple-signin-button img {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 2rem 0;
  font-family: poppins;
  font-weight: 600;
}
.separator::before, .separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.separator::after {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, black, transparent) 1;
}
.separator::before {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to left, black, transparent) 1;
}
.separator span {
  padding: 0 1rem;
  color: #666;
  font-size: 0.875rem;
}

@media (max-width: 1023px) {
  .auth-container {
    height: auto !important;
  }
  .auth-container .form-container {
    padding-top: 7rem !important;
    padding-bottom: 3.5rem !important;
    margin-left: 0 !important;
    height: auto !important;
  }
  .auth-container .form-container.forgot-password {
    height: auto !important;
  }
  .login-left {
    display: none !important;
  }
}
@media (max-width: 639px) {
  .auth-container img.horizontal-logo {
    width: 220px !important;
    margin: 0 auto !important;
  }
  .auth-container .form-container form .heading-container h2 {
    text-align: center !important;
  }
}
.verify-container img.horizontal-logo {
  width: 400px;
  margin: 0 auto;
  height: auto;
  padding-right: 50px;
}
.verify-container .form-container {
  margin-left: 50vw;
  width: 45vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.verify-container .form-container form {
  width: 100%;
  text-align: center;
}
.verify-container .form-container form .big-message-container {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #8223F8;
  margin-top: 2rem;
}
.verify-container .form-container .interaction-container .form-group button {
  background-color: #8223F8;
  border-color: #8223F8;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 13px 10px;
  transition: background-color 0.3s ease;
}
.verify-container .form-container .interaction-container .form-group button:hover {
  background-color: #5600c0;
  border-color: #5600c0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}
.verify-container .form-container .interaction-container .copyright {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1023px) {
  .verify-container .form-container {
    margin-left: 0;
    width: 99vw;
    padding: 0 20px;
  }
  .verify-container .form-container form .big-message-container {
    margin-top: 1rem;
  }
  .verify-container .form-container form .interaction-container {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .verify-container {
    margin-left: 0 !important;
  }
}
@media (max-width: 480px) {
  .verify-container {
    margin-left: 0 !important;
  }
  .verify-container img.horizontal-logo {
    width: 300px;
  }
  .verify-container .form-container .interaction-container {
    margin: 0 auto;
    margin-top: 1.5rem;
  }
  .verify-container .form-container form .big-message-container {
    flex-direction: column;
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}

.auth-container.reset-password {
  width: 100vw;
  height: 100vh;
}
.auth-container.reset-password .login-left {
  width: 50%;
}
.auth-container.reset-password .login-left-main-img {
  margin-top: 0rem;
}
.auth-container.reset-password .form-container {
  margin-left: 50%;
}
@media (max-width: 1023px) {
  .auth-container.reset-password .form-container {
    margin-left: 0;
    padding-top: 0rem;
  }
}

.reset-password-button {
  background-color: #8223F8;
  border-color: #8223F8;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 13px 10px;
  transition: background-color 0.3s ease;
}
.reset-password-button:hover {
  background-color: #5600c0 !important;
  border-color: #5600c0 !important;
  border-radius: 10px !important;
}

.app-page, .profile, .upload, .inbox {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.app-page .heading-container, .profile .heading-container, .upload .heading-container, .inbox .heading-container {
  position: relative;
  color: #161823;
  background-color: #fff;
  text-align: center;
  line-height: 44px;
  font-size: 17px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  font-weight: 700;
}
.app-page .heading-container h1, .profile .heading-container h1, .upload .heading-container h1, .inbox .heading-container h1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 17px;
  padding: 0 12px;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}
.app-page .heading-container:after, .profile .heading-container:after, .upload .heading-container:after, .inbox .heading-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 24, 35, 0.2);
  height: 1px;
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.app-page .content-container, .profile .content-container, .upload .content-container, .inbox .content-container {
  overflow: hidden;
}

.inbox .content-container .notification-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  margin-top: 8px;
  align-content: center;
  justify-content: space-evenly;
  padding-left: 10px;
}
.inbox .content-container .notification-tabs span {
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 12px;
  background: #f1f1f1;
  font-weight: 500;
  font-size: 12px;
  color: #161823;
  margin-right: 8px;
  margin-bottom: 12px;
}
.inbox .content-container .notification-tabs span.active {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: #161823;
  color: #fff;
}

.app-page, .profile, .upload, .inbox {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.app-page .heading-container, .profile .heading-container, .upload .heading-container, .inbox .heading-container {
  position: relative;
  color: #161823;
  background-color: #fff;
  text-align: center;
  line-height: 44px;
  font-size: 17px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  font-weight: 700;
}
.app-page .heading-container h1, .profile .heading-container h1, .upload .heading-container h1, .inbox .heading-container h1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 17px;
  padding: 0 12px;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}
.app-page .heading-container:after, .profile .heading-container:after, .upload .heading-container:after, .inbox .heading-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 24, 35, 0.2);
  height: 1px;
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.app-page .content-container, .profile .content-container, .upload .content-container, .inbox .content-container {
  overflow: hidden;
}

.inbox .content-container .notification-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  margin-top: 8px;
  align-content: center;
  justify-content: space-evenly;
  padding-left: 10px;
}
.inbox .content-container .notification-tabs span {
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 12px;
  background: #f1f1f1;
  font-weight: 500;
  font-size: 12px;
  color: #161823;
  margin-right: 8px;
  margin-bottom: 12px;
}
.inbox .content-container .notification-tabs span.active {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: #161823;
  color: #fff;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn, .left-pane-image-container div.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn, .left-pane-image-container div.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.primary-button, .upload .file-upload-container .lower label, .login-btn,
.actions-btn {
  background-color: #8223F8;
  color: #ffffff;
  padding: 6px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-button:hover, .upload .file-upload-container .lower label:hover, .login-btn:hover,
.actions-btn:hover {
  background-color: #6803e4;
}

.primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  opacity: 0.8;
  pointer-events: none;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn, .left-pane-image-container div.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.primary-button, .upload .file-upload-container .lower label, .login-btn,
.actions-btn {
  background-color: #8223F8;
  color: #ffffff;
  padding: 6px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-button:hover, .upload .file-upload-container .lower label:hover, .login-btn:hover,
.actions-btn:hover {
  background-color: #6803e4;
}

.primary-button-loading, .primary-button.loading, .upload .file-upload-container .lower label.loading, .loading.login-btn,
.loading.actions-btn {
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  opacity: 0.8;
  pointer-events: none;
}

.form-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 1rem 0;
}
.form-group button {
  tab-size: 4;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-family: inherit;
  margin: 0;
  width: 100%;
}
.form-group input, .form-group textarea {
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus, .form-group textarea:focus {
  --tw-border-opacity: 1;
  border: 1px solid #8223f8;
  outline: none;
}
.form-group textarea {
  resize: none;
}
.form-group.submit-button {
  margin-top: 2rem;
}
.form-group.submit-button button {
  background-color: #8223F8;
  border-color: #8223F8;
  border-radius: 10px;
  color: #ffffff;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.form-group.submit-button button svg {
  width: 20px;
}
.form-group.submit-button button:hover {
  background-color: #5600c0;
  border-radius: 10px;
}

.form-group-loading, .form-group.loading, form.loading .form-group, .form.loading .form-group {
  cursor: wait;
}
.form-group-loading input, .form-group.loading input, form.loading .form-group input, .form.loading .form-group input, .form-group-loading .form-group textarea, .form-group .form-group-loading textarea, .form-group.loading textarea, form.loading .form-group textarea, .form.loading .form-group textarea {
  pointer-events: none;
}

.upload .content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 3rem - 44px);
}
.upload .file-upload-container.uploading {
  display: none;
}
.upload .file-upload-container {
  position: relative;
  height: 100%;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.upload .file-upload-container .upper {
  background: #161823;
  flex-grow: 3;
  width: 100vw;
}
.upload .file-upload-container .lower input, .upload .file-upload-container .lower .form-group textarea, .form-group .upload .file-upload-container .lower textarea {
  display: none;
}
.upload .file-upload-container .lower {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 70%;
}
.upload .file-upload-container .lower h1 {
  font-weight: 400;
}
.upload .file-upload-container .lower span {
  color: rgba(22, 24, 35, 0.75);
}
.upload .file-upload-container .lower label {
  top: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -30%);
}
.upload form.create-post-container {
  width: 100%;
  height: 100%;
  padding: 0 1rem 1rem;
}

.upload-progress-bar {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  display: flex;
}
.upload-progress-bar .small-avatar-container {
  position: relative;
}
.upload-progress-bar .small-avatar-container .flic-dual-ring-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
}
.upload-progress-bar .small-avatar-container .flic-dual-ring-spinner .small-avatar {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.upload-progress-bar .small-avatar-container .flic-dual-ring-spinner:after {
  content: " ";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid;
  border-color: #6b0092 transparent #6b0092 transparent;
  animation: spinner-rotate 1.2s linear infinite;
}
.upload-progress-bar .progress {
  border-radius: 1rem;
  width: 100%;
  height: 0.5rem;
  flex-basis: 80%;
  background-color: #fde8e8;
}
.upload-progress-bar .progress .completion {
  height: 0.5rem;
  border-radius: 1rem;
  background-color: #6b0092;
  width: 0;
  transition: width ease 1s;
}
.upload-progress-bar .small-flic-icon img {
  height: 40px;
  width: 40px;
  border-radius: 100%;
}

.upload-progress-circle {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}
.upload-progress-circle svg {
  max-width: 90vw;
  max-height: 90vh;
}
.upload-progress-circle svg circle {
  transition: stroke-dashoffset 0.35s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke: #6b0092;
}
.upload-progress-circle .upload-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-progress-circle .upload-text h1 {
  font-weight: 300;
}
.upload-progress-circle .upload-text span {
  color: #c0c1c8;
  font-size: small;
}

.search-container {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  font-family: "Poppins", sans-serif;
}

.search {
  display: flex;
  flex-direction: column;
  margin: 100px 25px 10px 90px;
  padding-bottom: 0px;
  font-family: "Poppins", sans-serif;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}

.search-bar form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  height: 3rem;
  width: 100%;
}

.search-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.categories-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  margin-bottom: 20px;
}

.category-image {
  border-radius: 10px;
  overflow: hidden;
}

.category-image .img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
}

.category-name {
  text-align: left;
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.search-bar .form-group {
  height: 100%;
  width: 100%;
  padding-left: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  border-radius: 10px;
  outline: none;
  border-color: transparent;
  background-color: #f5f5f5;
}

.search-bar .form-group:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.search-bar .form-group::placeholder {
  color: black;
}

.category-search-icon {
  width: 30px;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  color: #000;
}

/* Styles for different screen sizes */
@media screen and (max-width: 320px) {
  .categories-box {
    flex: 0 0 calc(46.33% - 10px);
  }
}
@media screen and (max-width: 530px) {
  .categories-box {
    flex: 0 0 calc(33.33% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media screen and (max-width: 770px) {
  body {
    margin: 0px;
  }
  .auth-container {
    margin-left: 0px;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    margin-bottom: 50px;
  }
  .verify-container, .not-found-container {
    margin-left: 20px;
  }
  .feed-container {
    margin-left: 0px;
  }
  .post-container {
    width: 100vw;
  }
  .search {
    margin: 60px 10px 0px 10px;
  }
  .categories-box {
    max-width: calc(50% - 10px);
  }
  .category-search-icon {
    top: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .categories-box {
    flex: 0 0 calc(23.33% - 10px);
  }
}
@media screen and (min-width: 1500px) {
  .categories-box {
    flex: 0 0 calc(18.33% - 10px);
  }
}
.app-page .heading-container, .profile .heading-container, .upload .heading-container, .inbox .heading-container {
  position: relative;
  color: #161823;
  background-color: #fff;
  text-align: center;
  line-height: 44px;
  font-size: 17px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  font-weight: 700;
}

.app-page .heading-container h1, .profile .heading-container h1, .upload .heading-container h1, .inbox .heading-container h1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 17px;
  padding: 0 12px;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

.app-page .heading-container:after, .profile .heading-container:after, .upload .heading-container:after, .inbox .heading-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 24, 35, 0.2);
  height: 1px;
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

.app-page .content-container, .profile .content-container, .upload .content-container, .inbox .content-container {
  overflow: hidden;
}

.inbox .content-container .notification-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  margin-top: 8px;
  align-content: center;
  justify-content: space-evenly;
  padding-left: 10px;
}

.inbox .content-container .notification-tabs span {
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 12px;
  background: #f1f1f1;
  font-weight: 500;
  font-size: 12px;
  color: #161823;
  margin-right: 8px;
  margin-bottom: 12px;
}

.inbox .content-container .notification-tabs span .active {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: #161823;
  color: #fff;
}

.app-page, .profile, .upload, .inbox {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.app-page .heading-container, .profile .heading-container, .upload .heading-container, .inbox .heading-container {
  position: relative;
  color: #161823;
  background-color: #fff;
  text-align: center;
  line-height: 44px;
  font-size: 17px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  font-weight: 700;
}

.app-page .heading-container h1, .profile .heading-container h1, .upload .heading-container h1, .inbox .heading-container h1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 17px;
  padding: 0 12px;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

.app-page .heading-container:after, .profile .heading-container:after, .upload .heading-container:after, .inbox .heading-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 24, 35, 0.2);
  height: 1px;
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

.app-page .content-container, .profile .content-container, .upload .content-container, .inbox .content-container {
  overflow: hidden;
}

/* Search Results Styles */
.search-results {
  margin-top: 20px;
}

/* Search Tabs */
.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  background: transparent;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.search-tabs::-webkit-scrollbar {
  display: none;
}

.search-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 8px;
  position: relative;
  transition: all 0.2s ease;
  font-family: Poppins;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 40px;
}
.search-tab:hover {
  border-color: #8B5CF6;
  background: #f8f9ff;
}
.search-tab.active {
  background: #8B5CF6;
  color: white;
  border-color: #8B5CF6;
}
.search-tab.active .tab-icon {
  stroke: white;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.search-tab .tab-icon {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease;
  stroke: #666;
  filter: brightness(0) saturate(100%) invert(40%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.search-tab .subverses-icon {
  width: 22px;
  height: 22px;
}

.results-section {
  margin-bottom: 40px;
  border-radius: 0 0 12px 12px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
}

/* All Section - Combined Results */
.all-section .posts-subsection,
.all-section .categories-subsection,
.all-section .users-subsection {
  margin-bottom: 30px;
  border-radius: 10px;
  background: white;
  padding: 20px;
}
.all-section .posts-subsection:last-child,
.all-section .categories-subsection:last-child,
.all-section .users-subsection:last-child {
  margin-bottom: 0;
}
.all-section .posts-subsection h3,
.all-section .categories-subsection h3,
.all-section .users-subsection h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
  font-family: Poppins;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}
.all-section .posts-subsection h3::before,
.all-section .categories-subsection h3::before,
.all-section .users-subsection h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #8B5CF6;
  border-radius: 2px;
}

.results-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  font-family: Poppins;
  padding-bottom: 12px;
}

.posts-subsection .posts-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.categories-subsection .categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.categories-subsection .categories-grid .category-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.categories-subsection .categories-grid .category-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.categories-subsection .categories-grid .category-image img {
  width: 100%;
}

.categories-subsection .categories-grid .category-item .category-info {
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.categories-subsection .categories-grid .category-item .category-info h4 {
  margin-top: 0px;
  font-size: 1.1rem;
}

.categories-subsection .categories-grid .category-item .category-info p {
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
}

.categories-subsection .categories-grid .category-item .category-info h4, p {
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.users-subsection .users-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.users-subsection .users-grid .user-result-item .user-info .user-username {
  font-family: "Poppins", sans-serif;
}

/* Posts Section - Video Grid Layout */
.posts-section .posts-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.posts-section .video-item {
  border-radius: 12px;
  overflow: hidden;
}
.posts-section .video-player {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 9/16;
}

/* Categories Section */
.categories-section .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.categories-section .category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.categories-section .category-item:hover {
  border-color: #8B5CF6;
}
.categories-section .category-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0f0f0;
}
.categories-section .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories-section .category-info {
  flex: 1;
  min-width: 0;
}
.categories-section .category-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
}
.categories-section .category-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  line-height: 1.4;
}

/* Users Section */
.users-section .users-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* User Result Item Styles */
.user-result-item {
  display: flex;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 16px;
}
.user-result-item:hover {
  background: #f8f9fa;
  border-color: #8B5CF6;
}

.user-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0f0f0;
}
.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.user-result-item:hover .user-avatar img {
  transform: scale(1.05);
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-username {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Loading and Error States */
.search-loading, .search-error, .no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-loading p, .search-error p, .no-results p {
  font-size: 1rem;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #666;
  text-align: center;
}

.search-error p {
  color: #dc3545;
}

.search-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #8B5CF6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* iPad Responsive */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .search {
    margin: 60px 10px 10px 10px;
  }
  .results-section {
    padding: 16px;
    margin-bottom: 20px;
  }
  .posts-section .posts-video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .posts-section .video-item .video-player {
    aspect-ratio: 9/16;
  }
  .posts-subsection .posts-video-grid,
  .categories-subsection .categories-grid,
  .users-subsection .users-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .search {
    margin: 60px 10px 10px 10px;
  }
  .results-section {
    padding: 16px;
    margin-bottom: 20px;
  }
  .posts-section .posts-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .posts-section .video-item .video-player {
    aspect-ratio: 9/16;
  }
  .posts-subsection .posts-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .categories-section .categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .categories-section .category-item {
    padding: 12px;
    gap: 12px;
  }
  .categories-section .category-image {
    width: 60px;
    height: 60px;
  }
  .categories-section .category-name {
    font-size: 1rem;
    text-align: left;
  }
  .categories-section .category-description {
    font-size: 0.85rem;
  }
  .categories-subsection .categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .users-section .users-grid {
    gap: 10px;
  }
  .users-subsection .users-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .user-result-item {
    padding: 12px;
    gap: 12px;
  }
  .user-avatar {
    width: 45px;
    height: 45px;
  }
  .user-name {
    font-size: 1rem;
  }
  .user-username {
    font-size: 0.85rem;
  }
  .results-section h3 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 480px) {
  .search {
    margin: 80px 15px 70px 15px;
  }
  .results-section {
    padding: 12px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 16px;
  }
  .all-section .posts-subsection,
  .all-section .categories-subsection,
  .all-section .users-subsection {
    padding: 15px;
  }
  .posts-section .posts-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .posts-section .video-item .video-player {
    aspect-ratio: 9/16;
  }
  .posts-subsection .posts-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .categories-subsection .categories-grid,
  .users-subsection .users-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .category-item {
    padding: 10px;
    gap: 10px;
  }
  .category-image {
    width: 40px;
    height: 40px;
  }
  .category-name {
    font-size: 0.9rem;
  }
  .category-description {
    font-size: 0.8rem;
  }
  .user-result-item {
    padding: 10px;
    gap: 10px;
  }
  .user-avatar {
    width: 60px;
    height: 60px;
  }
  .user-name {
    font-size: 0.9rem;
  }
  .user-username {
    font-size: 0.8rem;
  }
  .results-section h3 {
    font-size: 1rem;
  }
}
.app-page, .profile, .upload, .inbox {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.app-page .heading-container, .profile .heading-container, .upload .heading-container, .inbox .heading-container {
  position: relative;
  color: #161823;
  background-color: #fff;
  text-align: center;
  line-height: 44px;
  font-size: 17px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  font-weight: 700;
}
.app-page .heading-container h1, .profile .heading-container h1, .upload .heading-container h1, .inbox .heading-container h1 {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 17px;
  padding: 0 12px;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}
.app-page .heading-container:after, .profile .heading-container:after, .upload .heading-container:after, .inbox .heading-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 24, 35, 0.2);
  height: 1px;
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.app-page .content-container, .profile .content-container, .upload .content-container, .inbox .content-container {
  overflow: hidden;
}

.inbox .content-container .notification-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  margin-top: 8px;
  align-content: center;
  justify-content: space-evenly;
  padding-left: 10px;
}
.inbox .content-container .notification-tabs span {
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 12px;
  background: #f1f1f1;
  font-weight: 500;
  font-size: 12px;
  color: #161823;
  margin-right: 8px;
  margin-bottom: 12px;
}
.inbox .content-container .notification-tabs span.active {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: #161823;
  color: #fff;
}

@keyframes vinyl-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@-moz-keyframes video-loader-spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes video-loader-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes video-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes skeleton-loading {
  0% {
    transform: skewX(-10deg) translateX(-100%);
  }
  100% {
    transform: skewX(-10deg) translateX(200%);
  }
}
.animate-pulse, .primary-button-loading, .primary-button.loading, .loading.login-btn,
.loading.actions-btn, .left-pane-image-container div.loading, .upload .file-upload-container .lower label.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.zoomIn, .feed-container .feed .post-container .post .video-click-container.paused svg {
  animation: zoomIn 0.3s;
}

.zoomOut {
  animation: zoomOut 0.3s;
}

.skeleton, .projects-container.loading .project-item, .posts-container .posts-grid.loading .post-item, .profile.loading .content-container .user-container .counters .counter span.value, .profile.loading .content-container .user-container .username, .profile.loading .content-container .user-container .avatar, .profile.loading .heading-container h1 {
  background: #eee;
  color: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.skeleton:before, .projects-container.loading .project-item:before, .posts-container .posts-grid.loading .post-item:before, .profile.loading .content-container .user-container .counters .counter span.value:before, .profile.loading .content-container .user-container .username:before, .profile.loading .content-container .user-container .avatar:before, .profile.loading .heading-container h1:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  animation: skeleton-loading 0.6s infinite;
}

.profile {
  overflow: hidden;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  padding: 3rem 0rem 0rem 3.5rem;
}
.profile .content-container {
  overflow: hidden;
}
.profile .content-container .user-container {
  padding: 8px 0 20px;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
}
.profile .content-container .user-container .avatar {
  width: 96px;
  height: 96px;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.profile .content-container .user-container .avatar img {
  width: 100%;
  height: 100%;
  font-size: 0;
}
.profile .content-container .user-container .username {
  color: rgb(22, 24, 35);
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 14px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-weight: 600;
}
.profile .content-container .user-container .counters {
  display: flex;
  padding: 0 46px;
  width: 100%;
}
.profile .content-container .user-container .counters .counter {
  width: 33.33%;
  position: relative;
  text-align: center;
}
.profile .content-container .user-container .counters .counter .value {
  display: block;
  text-align: center;
  color: rgb(22, 24, 35);
  font-weight: 700;
  font-size: 17px;
  margin: 0 auto;
}
.profile .content-container .user-container .counters .counter .key {
  display: block;
  text-align: center;
  color: rgba(22, 24, 35, 0.5);
  font-size: 13px;
}
.profile .content-container .user-container .counters .counter:not(:last-child):after {
  position: absolute;
  content: "";
  background: rgba(22, 24, 35, 0.12);
  width: 1px;
  height: 16px;
  transform: translateY(-50%) scaleX(0.5);
  right: 0;
  top: 50%;
}
.profile .content-container .post-tabs {
  position: -webkit-sticky;
  position: sticky;
  height: 40px;
  width: 100%;
  margin-bottom: 1px;
  background-color: #fff;
  z-index: 2;
  top: -2px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.profile .content-container .post-tabs .post-tab-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 38px;
}
.profile .content-container .post-tabs .post-tab-icons .icon-container {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.34;
}
.profile .content-container .post-tabs .post-tab-icons .icon-container svg {
  pointer-events: none;
  height: 24px;
  width: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.profile .content-container .post-tabs .post-tab-icons .icon-container.active {
  opacity: 1;
}
.profile .content-container .post-tabs .post-tab-underline {
  width: 48px;
  height: 2px;
  background: #161823;
  position: relative;
  -webkit-transition: left 0.3s linear;
  transition: left 0.3s linear;
}
.profile .content-container .post-tabs:before, .profile .content-container .post-tabs:after {
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  right: 0;
  background-color: rgba(22, 24, 35, 0.12);
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.profile .content-container .post-tabs:before {
  top: 0;
}
.profile .content-container .post-tabs:after {
  bottom: 0;
}
.profile .content-section {
  padding: 20px;
  width: 100%;
  min-height: 50vh;
}

.profile.loading .heading-container h1 {
  max-width: 10em;
  margin: auto auto;
  max-height: 2em;
}
.profile.loading .content-container .user-container .avatar {
  border-radius: 100%;
}
.profile.loading .content-container .user-container .username {
  min-width: 6em;
  min-height: 1.5em;
}
.profile.loading .content-container .user-container .counters .counter span.value {
  max-width: 2em;
  min-height: 1.5em;
}

.gradient-bg {
  background: linear-gradient(to right, #560FB7, #CB0339);
  width: 100%;
  height: 180px;
  position: relative;
  z-index: 1;
}

.profile-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  background: white;
  padding: 50px 50px 50px 140px;
  border-bottom: 1px solid #ddd;
  width: 82%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 99;
  margin: -100px auto 50px auto;
  border-radius: 14px;
}
.profile-header .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("path/to/your/background-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.profile-header .profile-info {
  text-align: center;
  margin-top: 0px;
}
.profile-header .profile-info .profile-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.profile-header .profile-info .profile-picture {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #8223F8;
}
.profile-header .profile-info .profile-picture-skeleton {
  width: 180px !important;
  height: 180px !important;
  border-radius: 50%;
}
.profile-header .profile-info .profile-name-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  margin-left: 30px;
}
.profile-header .profile-info .profile-name-skeleton {
  width: 200px !important;
  height: 28px !important;
  border-radius: 8px;
  margin-bottom: 8px;
}
.profile-header .profile-info .profile-username-skeleton {
  width: 140px !important;
  height: 18px !important;
  border-radius: 8px;
  margin-bottom: 12px;
}
.profile-header .profile-info .profile-bio-skeleton {
  width: 260px !important;
  height: 16px !important;
  border-radius: 6px;
  margin-bottom: 8px;
}
.profile-header .profile-info .user-bio {
  margin-top: 15px;
}
.profile-header .profile-info p {
  font-size: 17px;
  color: #4A5565;
  margin: 0;
  font-family: poppins;
}
.profile-header .profile-info h1 {
  font-size: 32px;
  margin: 0px 0 0 0;
  color: rgb(0, 0, 0);
  font-family: poppins;
}
.profile-header .profile-info .profile-stats {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
  margin-bottom: 10px;
  margin-top: 15px;
  font-family: "poppins", sans-serif !important;
}
.profile-header .profile-info .profile-stats span {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  font-family: "poppins", sans-serif !important;
}
.profile-header .profile-info .profile-stats .profile-stat-skeleton {
  width: 80px !important;
  height: 48px !important;
  border-radius: 12px;
}
.profile-header .profile-info .profile-stats .members-in-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: -10px;
}
.profile-header .profile-info .profile-stats .members-in-container .subverse-images {
  display: flex;
  align-items: center;
  gap: -8px;
}
.profile-header .profile-info .profile-stats .members-in-container .subverse-images .subverse-member-image {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #8223F8;
  object-fit: cover;
  margin-left: -8px;
  transition: transform 0.2s ease;
  cursor: default;
}
.profile-header .profile-info .profile-stats .members-in-container .subverse-images .subverse-member-image:first-child {
  margin-left: 0;
}
.profile-header .profile-info .profile-stats .members-in-container .subverse-images .subverse-member-image:hover {
  transform: scale(1.1);
  z-index: 10;
  position: relative;
}
.profile-header .profile-info .profile-stats .members-in-container .subverse-images .additional-count {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #8223F8;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: white;
  margin-left: -8px;
  backdrop-filter: blur(10px);
  font-family: "poppins", sans-serif;
}
.profile-header .profile-info .profile-stats .members-in-container .members-text {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.tabs {
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 0;
  margin-top: -20px;
  gap: 40px;
  border-bottom: 1px solid #ddd;
}
.tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.tabs button .tab-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.tabs button .tab-text {
  font-size: 16px;
  font-weight: 600;
}
.tabs button .tab-count {
  background: rgba(139, 92, 246, 0.1);
  color: #8223F8;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.tabs button.active {
  color: #8223F8;
}
.tabs button.active .tab-icon {
  stroke: #8223F8;
}
.tabs button.active .tab-count {
  background: rgba(139, 92, 246, 0.15);
  color: #8223F8;
}
.tabs button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #8223F8;
  border-radius: 2px;
}
.tabs button:not(.active) {
  color: #6B7280;
}
.tabs button:not(.active) .tab-icon {
  stroke: #6B7280;
}
.tabs button:not(.active) .tab-count {
  background: rgba(107, 114, 128, 0.1);
  color: #6B7280;
}
.tabs button:hover:not(.active) {
  color: #8B5CF6;
}
.tabs button:hover:not(.active) .tab-icon {
  stroke: #8B5CF6;
}
.tabs button:hover:not(.active) .tab-count {
  background: rgba(139, 92, 246, 0.15);
  color: #8B5CF6;
}

.tab-skeleton {
  width: 220px !important;
  height: 48px !important;
  border-radius: 12px;
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.post-header .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.post-header .author-info h4 {
  margin: 0;
  font-size: 16px;
}
.post-header .author-info span {
  font-size: 12px;
  color: gray;
}

.posts-container {
  width: 100%;
}
.posts-container .posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0px;
  width: 100%;
}
.posts-container .posts-grid .post-item {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.posts-container .posts-grid .post-item .post-video {
  width: 100%;
  height: 100%;
}
.posts-container .posts-grid .post-card-skeleton {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px;
}
.posts-container .posts-grid.empty {
  position: relative;
  display: block;
  height: 50vh;
}
.posts-container .posts-grid.empty:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background-size: contain;
  background-image: url("../../src/images/login-signup.png");
}
.posts-container .error-message {
  color: #dc3545;
  text-align: center;
  padding: 1rem;
  margin: 1rem 0;
  background-color: #f8d7da;
  border-radius: 4px;
  width: 100%;
}
.posts-container .loading-spinner {
  text-align: center;
  padding: 2rem;
  color: #6b0092;
  font-weight: bold;
}
.posts-container .profile-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
  text-align: center;
}
.posts-container .profile-loading-container .loading-spinner-circle {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.posts-container .profile-loading-container .loading-spinner-circle .spinner {
  width: 100%;
  height: 100%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #6b0092;
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
}
.posts-container .profile-loading-container .loading-text {
  color: #6b0092;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}
.posts-container .no-posts-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  color: #6c757d;
  font-size: 1.1rem;
}
.posts-container .load-more-button {
  display: block;
  margin: 2rem auto;
  padding: 0.75rem 2rem;
  background-color: #6b0092;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}
.posts-container .load-more-button:hover {
  background-color: #4d006a;
}
.posts-container .load-more-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.projects-container {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.projects-container .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 16px;
  width: 100%;
}
.projects-container .projects-grid .project-card {
  width: 100%;
  max-width: 15rem;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.2s;
}
.projects-container .projects-grid .project-card .project-logo {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.projects-container .projects-grid .project-card .project-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.projects-container .projects-grid .project-card .project-name {
  height: 40px;
  padding: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.projects-container.empty {
  position: relative;
  display: block;
  height: 50vh;
}
.projects-container.empty:before {
  content: "No projects available";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: gray;
}

.liked-videos-container {
  width: 100%;
}
.liked-videos-container .liked-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px;
  width: 100%;
}
.liked-videos-container .liked-videos-grid .liked-video-item {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.2s ease;
}
.liked-videos-container .liked-videos-grid .liked-video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.liked-videos-container .liked-videos-grid .liked-video-item .liked-video {
  width: 100%;
  height: 100%;
}
.liked-videos-container .liked-videos-grid .liked-video-skeleton {
  width: 100% !important;
  height: 100% !important;
  border-radius: 12px;
}

.main-container {
  overflow-y: auto;
  height: calc(100vh - 60px);
  background-color: #f5f5f5;
  padding: 0;
}

.container {
  width: 100vw;
  display: flex;
  height: 100%;
  min-height: 100vh;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.follow-button-container {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}

.follow-button {
  background: #8223F8;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 110px;
  height: 40px;
  overflow: hidden;
  font-family: "poppins", sans-serif !important;
}
.follow-button:hover {
  background: #6b1fd1;
  box-shadow: 0 4px 12px rgba(107, 31, 209, 0.3);
}

@media (max-width: 1024px) {
  .profile {
    padding: 3rem 0rem 0rem 0rem;
  }
  .profile .content-section {
    padding-bottom: 80px;
  }
  .profile .gradient-bg {
    height: 140px;
  }
  .profile .profile-header {
    padding: 20px 10px;
    width: 90%;
    align-items: center;
  }
  .profile .profile-header .profile-info-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .profile .profile-header .profile-info {
    margin-top: 0px;
    padding: 0px;
  }
  .profile .profile-header .profile-info h1 {
    font-size: 24px;
  }
  .profile .profile-header .profile-info p {
    font-size: 14px;
  }
  .profile .profile-header .profile-info .user-bio {
    margin-top: 5px;
    text-align: center;
  }
  .profile .profile-header .profile-info .profile-name-container {
    margin-left: 0px;
    align-items: center;
    justify-content: center;
  }
  .profile .profile-header .profile-info .profile-picture {
    width: 80px;
    height: 80px;
  }
  .profile .profile-header .profile-info .profile-picture .name-container {
    margin-left: 0px;
    text-align: center;
    align-items: center;
  }
  .profile .profile-header .profile-info .profile-picture-skeleton {
    width: 80px !important;
    height: 80px !important;
  }
  .profile .profile-header .profile-info .profile-name-skeleton {
    width: 170px !important;
    height: 24px !important;
  }
  .profile .profile-header .profile-info .profile-username-skeleton {
    width: 130px !important;
    height: 16px !important;
  }
  .profile .profile-header .profile-info .profile-bio-skeleton {
    width: 220px !important;
    height: 14px !important;
  }
  .profile .profile-header .profile-info .profile-stats {
    margin-top: 20px;
  }
  .profile .profile-header .profile-info .profile-stats span {
    font-size: 14px;
  }
  .profile .profile-header .profile-info .profile-stats .profile-stat-skeleton {
    width: 68px !important;
    height: 40px !important;
  }
  .profile .tab-skeleton {
    width: 200px !important;
    height: 44px !important;
  }
}
@media screen and (max-width: 770px) {
  .profile.user-profile .follow-button {
    padding: 8px 24px;
    font-size: 15px;
    min-width: 100px;
    height: 36px;
    border-radius: 20px;
  }
  .profile.user-profile .user-bio {
    font-size: 13px;
    max-width: 340px;
  }
}
@media screen and (max-width: 480px) {
  .profile.user-profile .follow-button {
    padding: 6px 18px;
    font-size: 15px;
    min-width: 90px;
    height: 32px;
    border-radius: 18px;
  }
  .profile.user-profile .user-bio {
    font-size: 12px;
  }
  .profile .profile-header {
    padding: 16px 12px;
  }
  .profile .profile-header .profile-info .profile-picture-skeleton {
    width: 72px !important;
    height: 72px !important;
  }
  .profile .profile-header .profile-info .profile-name-skeleton {
    width: 150px !important;
    height: 22px !important;
  }
  .profile .profile-header .profile-info .profile-username-skeleton {
    width: 110px !important;
    height: 14px !important;
  }
  .profile .profile-header .profile-info .profile-bio-skeleton {
    width: 190px !important;
    height: 12px !important;
  }
  .profile .profile-header .profile-info .profile-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .profile .profile-header .profile-info .profile-stats .profile-stat-skeleton {
    width: 60px !important;
    height: 36px !important;
  }
  .profile .tab-skeleton {
    width: 160px !important;
    height: 40px !important;
  }
  .liked-videos-container .liked-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .profile .posts-container .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 771px) {
  .liked-videos-container .liked-videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
.dashboard-container {
  width: 100%;
  height: 100%;
  margin-top: 5rem;
  min-height: 100vh;
  padding: 2rem 2rem 2rem 6rem;
}
.dashboard-container .dashboard .grid-container {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1200px) {
  .dashboard-container .dashboard .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 800px) and (max-width: 1199px) {
  .dashboard-container .dashboard .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 799px) {
  .dashboard-container .dashboard .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1200px) {
  .dashboard-container .dashboard .grid-container.users-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .dashboard-container .dashboard .grid-container.content-top-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .dashboard-container .dashboard .grid-container.reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .dashboard-container .dashboard .grid-container.wallets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dashboard-container .dashboard .grid-container.wallets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dashboard-container .dashboard .grid-container .grid-item {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}
.dashboard-container .dashboard .grid-container .grid-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.dashboard-container .dashboard .grid-container .grid-item .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 2;
}
.dashboard-container .dashboard .grid-container .grid-item .card-header .grid-item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  font-family: Poppins, sans-serif;
}
.dashboard-container .dashboard .grid-container .grid-item .card-header .card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #8223f8;
  background: #f6f0f8;
  opacity: 1;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5rem;
  border-radius: 50%;
}
.dashboard-container .dashboard .grid-container .grid-item .card-header .card-icon-wrapper svg {
  width: 3rem;
  height: 3rem;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body .total-count {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
  font-family: Poppins, sans-serif;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body .tranding {
  display: flex;
  flex-direction: row;
  font-size: 1em;
  gap: 0.25rem;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body .tranding .trand-count {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: Poppins, sans-serif;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body .tranding .trand-text {
  font-size: 0.875em;
  margin: 0;
  font-weight: 500;
  margin-top: 0;
  font-family: Poppins, sans-serif;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body .card-interactive-button {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}
.dashboard-container .dashboard .grid-container .grid-item .card-body .card-interactive-button:hover {
  color: #8223f8;
}
@media (max-width: 768px) {
  .dashboard-container .dashboard .grid-container .grid-item {
    padding: 1.25rem;
    min-height: 120px;
  }
  .dashboard-container .dashboard .grid-container .grid-item .card-header {
    margin-bottom: 1rem;
  }
  .dashboard-container .dashboard .grid-container .grid-item .card-header .grid-item-title {
    font-size: 0.95rem;
  }
  .dashboard-container .dashboard .grid-container .grid-item .card-header .card-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .dashboard-container .dashboard .grid-container .grid-item .card-body .total-count {
    font-size: 1.5rem;
  }
  .dashboard-container .dashboard .grid-container .grid-item .card-body .tranding .trand-count {
    font-size: 0.8rem;
  }
  .dashboard-container .dashboard .grid-container .grid-item .card-body .tranding .trand-text {
    font-size: 0.8rem;
  }
}
.dashboard-container .dashboard .grid-container .col-2 {
  grid-column: span 2;
  /* Span this item across 2 columns */
}
.dashboard-container .dashboard .grid-container .row-2 {
  grid-row: span 2;
}
.dashboard-container .dashboard .doughnut-chart {
  align-self: stretch;
  max-width: 20em;
}

.actions {
  display: flex;
  justify-content: space-between;
}

.quick-actions {
  background-color: white;
  color: black;
  border: none;
}

.user {
  background-color: white;
  margin: 0.4rem;
  display: flex;
  border-radius: 1.2rem;
  align-items: flex-start;
  width: 100%;
  min-width: 60rem;
}
.user .user-data {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}
.user img {
  border-radius: 1.2rem;
}
.user .user-actions {
  align-self: flex-end;
  margin: 0.4rem;
}

.header-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.back-btn {
  padding: 0.4rem;
  min-width: 4rem;
  background-color: white;
  border-radius: 0.4rem;
  cursor: pointer;
  height: 2rem;
}

.select {
  background-color: white;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 0rem;
  padding: 6px;
  border-radius: 5px;
  margin-bottom: 1rem;
  min-width: 150px;
}

.data-item {
  display: flex;
}

.video-error {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feedback-list .feedback-item,
.feedback-list .feedback-header {
  border: 1px solid black;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.feedback-list .feedback-item .sender,
.feedback-list .feedback-header .sender {
  display: flex;
  align-items: center;
  width: 14rem;
  margin-left: 1rem;
}
.feedback-list .feedback-item .sender .sender-name,
.feedback-list .feedback-header .sender .sender-name {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.feedback-list .feedback-item .sender .sender-image,
.feedback-list .feedback-header .sender .sender-image {
  width: 2rem;
  border-radius: 2rem;
  margin-right: 0.4rem;
}
.feedback-list .feedback-item .feedback-app,
.feedback-list .feedback-header .feedback-app {
  min-width: 10rem;
}
.feedback-list .feedback-item .feedback-type,
.feedback-list .feedback-header .feedback-type {
  min-width: 10rem;
  font-weight: 600;
}
.feedback-list .feedback-item .feedback-text,
.feedback-list .feedback-header .feedback-text {
  font-size: 1rem;
  flex: 2;
  margin-left: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media (max-width: 40em) {
  .feedback-list .feedback-item,
  .feedback-list .feedback-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .feedback-list .feedback-item .sender,
  .feedback-list .feedback-header .sender {
    margin-left: 0;
  }
  .feedback-list .feedback-item .sender-name,
  .feedback-list .feedback-item .feedback-type,
  .feedback-list .feedback-item .feedback-text,
  .feedback-list .feedback-header .sender-name,
  .feedback-list .feedback-header .feedback-type,
  .feedback-list .feedback-header .feedback-text {
    margin: 0.5rem 0;
  }
  .feedback-list .feedback-item .feedback-text,
  .feedback-list .feedback-header .feedback-text {
    margin-left: 0;
  }
}
.feedback-list .feedback-header {
  font-weight: bold;
}

.feedback-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedback-cards .feedback-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.feedback-cards .feedback-card .feedback-header {
  display: flex;
  align-items: center;
}
.feedback-cards .feedback-card .feedback-header .sender-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.feedback-cards .feedback-card .feedback-header .sender-name {
  font-weight: bold;
}
.feedback-cards .feedback-card .feedback-header .feedback-type {
  color: white;
  padding: 5px 9px;
  border: none;
  border-radius: 6px;
}
.feedback-cards .feedback-card .feedback-description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feedback-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
.feedback-table th,
.feedback-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #ddd;
}
.feedback-table th {
  background-color: #f2f2f2;
}
.feedback-table .sender-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.feedback-table .sender-name {
  font-weight: bold;
}
.feedback-table .feedback-type {
  color: white;
  padding: 5px 9px;
  border: none;
  border-radius: 6px;
}
.feedback-table .user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.feedback-table .sender-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.feedback-table .sender-name {
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 425px) {
  .feedback-table {
    display: none;
  }
  .feedback-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .feedback-card .feedback-header {
    display: flex;
    align-items: center;
  }
  .feedback-card .feedback-header .sender-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .feedback-card .feedback-header .sender-name {
    font-weight: bold;
  }
  .feedback-card .feedback-header .feedback-type {
    font-size: 0.9rem;
    margin-left: 10px;
  }
  .feedback-card .feedback-description {
    margin-top: 0.5rem;
  }
  .feedback-table {
    display: block;
    width: 100%;
  }
  .feedback-table tbody {
    display: block;
    width: 100%;
  }
  .feedback-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background-color: white;
  }
  .feedback-table td {
    display: flex;
    justify-content: space-between;
    border: none;
    padding: 0.5rem;
    width: 100%;
  }
  .feedback-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .feedback-table td:last-child {
    flex-direction: column;
    align-items: flex-start;
  }
}
.error-logs-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.error-logs-table th {
  background-color: #f8f9fa;
  color: #333;
  padding: 1rem;
  border-bottom: 2px solid #eaeaea;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
}
.error-logs-table th:nth-child(2), .error-logs-table th:nth-child(3) {
  text-align: right;
}
.error-logs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eaeaea;
  font-size: 0.85rem;
  color: #555;
}
.error-logs-table td:nth-child(2), .error-logs-table td:nth-child(3) {
  text-align: right;
  font-weight: 500;
}
.error-logs-table tr:hover {
  background-color: #f1f1f1;
}
.error-logs-table .status-code {
  font-weight: bold;
  color: red;
}
@media (max-width: 425px) {
  .error-logs-table {
    display: none;
  }
}

.error-logs-card {
  display: none;
}
@media (max-width: 425px) {
  .error-logs-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .error-logs-card .log {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
    border-radius: 0.8rem;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .error-logs-card .log:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  .error-logs-card .log .log-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .error-logs-card .log .log-header .header-item {
    text-align: left;
    color: #333;
    font-size: 1rem;
  }
  .error-logs-card .log .log-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .error-logs-card .log .log-data .status-code {
    color: #d9534f;
    font-weight: bold;
  }
}

.upload-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.feed-btn {
  padding: 0.7rem;
  background-color: #6b0092;
  border-radius: 0.4rem;
  cursor: pointer;
  color: #fff;
}

.input-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0px;
}
.input-section label {
  font-weight: 500;
  color: #333;
  font-size: 18px;
}
.input-section input, .input-section .form-group textarea, .form-group .input-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
}
.input-section input:focus, .input-section .form-group textarea:focus, .form-group .input-section textarea:focus {
  outline: none;
  border-color: #007bff;
}
.input-section input::placeholder, .input-section .form-group textarea::placeholder, .form-group .input-section textarea::placeholder {
  color: #999;
}
.input-section small {
  color: #666;
  font-size: 12px;
}

.link-list-section {
  margin-top: 24px;
}
.link-list-section label {
  font-weight: 500;
  color: #333;
  font-size: 18px;
  display: block;
  margin-bottom: 12px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.link-item span {
  color: #333;
  font-size: 17px;
  word-break: break-all;
  margin-right: 12px;
  flex: 1;
}
.link-item .remove-button {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  transition: color 0.3s ease;
}
.link-item .remove-button:hover {
  color: #dc3545;
}
.link-item .remove-button svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 768px) {
  .upload-container {
    padding: 16px;
  }
  .link-item {
    padding: 10px;
  }
  .link-item span {
    font-size: 13px;
  }
}
.input-with-button {
  display: flex;
  gap: 8px;
}
.input-with-button input, .input-with-button .form-group textarea, .form-group .input-with-button textarea {
  flex: 1;
}

.upload-button {
  margin-top: 16px;
  padding: 12px 24px;
  background-color: #6b0092;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.upload-button:hover {
  background-color: #5c027c;
}

.clear-button {
  margin-top: 16px;
  padding: 12px 24px;
  background-color: #6b0092;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.clear-button:hover {
  background-color: #5c027c;
}

.date-picker-section {
  margin-top: 1rem;
}
.date-picker-section label {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.date-picker-section input[type=date], .date-picker-section .form-group textarea[type=date], .form-group .date-picker-section textarea[type=date] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.date-picker-section input[type=date]:focus, .date-picker-section .form-group textarea[type=date]:focus, .form-group .date-picker-section textarea[type=date]:focus {
  outline: none;
  border-color: #007bff;
}

/* ===========================
   TOP CARDS GRID (4 CARDS)
   =========================== */
.users-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1200px) {
  .users-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .users-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .users-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
     SORA BOTTOM SECTION GRID
     =========================== */
.sora-content-bottom {
  display: grid !important;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  .sora-content-bottom {
    grid-template-columns: 1fr 1fr !important;
  }
  .sora-content-bottom .post-metrics-card,
  .sora-content-bottom .activity-distribution-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
  }
  .sora-content-bottom .post-metrics-card .post-metrics,
  .sora-content-bottom .activity-distribution-card .sora-table-container {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .sora-content-bottom {
    grid-template-columns: 1fr !important;
  }
}
.sora-content-bottom {
  /* Top Categories spans full width */
}
.sora-content-bottom .sora-top-categories-card {
  grid-column: 1/-1 !important;
  margin-top: 1.2rem;
}
.sora-content-bottom::after {
  content: "";
  display: table;
  clear: both;
}

/* ====================================
     TOP CATEGORIES (FULL WIDTH BELOW)
     ==================================== */
.sora-top-categories-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.post-metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.sora-top-categories-title {
  font-size: 1rem;
  font-weight: 500;
  color: #666666;
  margin: 0;
  font-family: Poppins, sans-serif;
}

/* ================================
     EXISTING SORA COMPONENT STYLES
     ================================ */
.sora-status-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* table wrapper: scroll instead of stretching viewport */
.sora-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 0.5rem;
  min-height: 100px;
  /* Ensure scrollbar is visible and usable on mobile */
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

/* make sure the table itself never forces body wider than screen */
.error-logs-table {
  width: 100%;
  border-collapse: collapse;
}

/* Override: Keep Sora dashboard table visible on mobile (it's scrollable) */
@media (max-width: 425px) {
  .sora-table-container .error-logs-table {
    display: table !important;
  }
}

/* categories list */
.sora-categories-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sora-category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sora-category-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sora-category-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.sora-category-meta {
  font-size: 0.75rem;
  color: #6b7280;
}

.sora-category-credits {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
}

/* Progress bars */
.post-metric-progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.post-metric-progress-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 0.3s ease;
}

.trophy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #f59e0b;
  background: #fffbeb;
  opacity: 1;
  flex-shrink: 0;
  padding: 0.5rem;
  border-radius: 50%;
}
.trophy-icon svg {
  width: 3rem;
  height: 3rem;
}

.medal-icon {
  margin-right: 0.25rem;
}
.medal-icon.medal-gold {
  color: #ffd700;
}
.medal-icon.medal-silver {
  color: #c0c0c0;
}
.medal-icon.medal-bronze {
  color: #cd7f32;
}
.medal-icon.medal-black {
  color: #333333;
}

/* ===============================
     MOBILE / SMALL SCREEN OVERRIDES
     =============================== */
@media (max-width: 600px) {
  /* soften card padding so they fit nicely */
  .post-metrics-card,
  .activity-distribution-card,
  .sora-top-categories-card {
    padding: 1rem;
  }
  .activity-distribution-card {
    padding: 1rem 0.25rem 2rem 0.25rem;
  }
  /* table: smaller cells so it fits better,
       still scrollable horizontally if needed */
  .error-logs-table th,
  .error-logs-table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
    min-width: 80px; /* Ensure minimum column width */
  }
  /* categories: stack credits under name on very narrow screens */
  .sora-category-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .sora-category-credits {
    align-self: flex-start;
  }
}
/* Period Cards and Input Styles */
.period-row-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.period-input-container {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 250px;
  isolation: isolate;
}

.search-icon-dashboard {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 1;
  font-size: 1rem;
  pointer-events: none;
}

.custom-period-input {
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px 0 0 8px;
  font-size: 0.875rem;
  font-family: Poppins, sans-serif;
  width: 100%;
  background-color: #ffffff;
  color: #374151;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-right: none;
}
.custom-period-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.custom-period-input::placeholder {
  color: #9ca3af;
}

.search-button-dashboard {
  padding: 0.75rem 1rem;
  background-color: #3b82f6;
  color: #ffffff;
  border: 1px solid #3b82f6;
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.search-button-dashboard:hover:not(:disabled) {
  background-color: #2563eb;
  border-color: #2563eb;
}
.search-button-dashboard:disabled {
  background-color: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
}
.search-button-dashboard:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.period-cards-container {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.period-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 60px;
  text-align: center;
}
.period-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  font-family: Poppins, sans-serif;
}
.period-card:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
.period-card.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.period-card.active span {
  color: #ffffff;
}

@media (max-width: 900px) {
  .dashboard-container {
    padding: 2rem 2rem 6rem 2rem;
  }
  .period-row-container {
    gap: 0.75rem;
  }
  .period-input-container {
    min-width: 150px;
  }
  .period-cards-container {
    gap: 0.5rem;
    justify-content: center;
  }
  .period-card {
    padding: 0.5rem 0.75rem;
    min-width: 50px;
  }
  .period-card span {
    font-size: 0.8125rem;
  }
  .custom-period-input {
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem 0.625rem 2.25rem;
    border-radius: 6px 0 0 6px;
    border-right: none;
  }
  .search-button-dashboard {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 0 6px 6px 0;
  }
  .search-icon-dashboard {
    left: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    pointer-events: none;
  }
}
/* No Data Fallback UI */
.no-data-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 2rem;
}

.no-data-card {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.no-data-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.no-data-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-family: Poppins, sans-serif;
}

.no-data-message {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  font-family: Poppins, sans-serif;
}

@media (max-width: 900px) {
  .no-data-container {
    min-height: 400px;
    padding: 1.5rem;
  }
  .no-data-card {
    max-width: 100%;
    padding: 2rem;
  }
  .no-data-title {
    font-size: 1.125rem;
  }
  .no-data-message {
    font-size: 0.8125rem;
  }
  /* Table container for mobile */
  .sora-table-container {
    margin: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    min-height: 100px;
    margin-bottom: 1.5rem;
    /* Custom scrollbar for better mobile experience */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
  }
  .sora-table-container::-webkit-scrollbar {
    height: 6px;
  }
  .sora-table-container::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
  }
  .sora-table-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
  }
  .sora-table-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
  /* Ensure Sora dashboard table is visible on mobile */
  .sora-table-container .error-logs-table {
    display: table !important;
    min-width: 300px; /* Minimum width to ensure table doesn't collapse too much */
    font-size: 0.75rem;
    table-layout: auto;
    border-collapse: collapse;
  }
  /* Extra small screens - reduce table min-width for better visibility */
}
@media (max-width: 900px) and (max-width: 430px) {
  .sora-table-container {
    min-height: 100px;
    margin-bottom: 1.5rem;
  }
  .sora-table-container .error-logs-table {
    display: table !important;
    min-width: 250px;
    font-size: 0.7rem;
  }
  .sora-table-container .error-logs-table th,
  .sora-table-container .error-logs-table td {
    padding: 0.4rem 0.2rem;
    min-width: 60px;
  }
}
@media (max-width: 900px) {
  .sora-table-container .error-logs-table th,
  .sora-table-container .error-logs-table td {
    padding: 0.5rem 0.3rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
  }
  .sora-table-container .error-logs-table th {
    background-color: #f9fafb;
    font-weight: 600;
    font-size: 0.7rem;
  }
}
/* ===========================
   USER GROWTH CHART SECTION
   =========================== */
.user-growth-chart-section {
  margin-top: 2rem;
  width: 100%;
}

.user-growth-chart-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}
.user-growth-chart-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.user-growth-chart-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
  font-family: Poppins, sans-serif;
}

.user-growth-chart-container {
  width: 100%;
  height: 300px;
  position: relative;
}

.line-chart-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

@media (max-width: 600px) {
  .user-growth-chart-card {
    padding: 1rem;
  }
  .user-growth-chart-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .user-growth-chart-container {
    height: 250px;
  }
}
.side-navigation {
  position: fixed;
  top: 60px;
  left: 0;
  width: 260px;
  height: 100%;
  background: white;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 99999;
}
.side-navigation a {
  display: grid;
  min-width: 38px;
}
.side-navigation svg {
  width: 25px;
  height: 25px;
}
.side-navigation svg path {
  stroke: black;
}
.side-navigation .nav-item {
  padding: 10px 20px;
  margin: 0 10px 10px 10px;
  border-radius: 12px;
}
.side-navigation .nav-item.active {
  background-color: #f6f0f8;
}
.side-navigation .nav-item.logout {
  margin-top: auto;
  margin-bottom: 50px;
}
.side-navigation .nav-item .nav-text {
  margin: 3px 0 0 16px;
  font-family: "Poppins", sans-serif;
}
.side-navigation .nav-item .nav-text:hover {
  color: #6b0092;
}
.side-navigation .nav-item img {
  width: 30px;
}
.side-navigation .button-logout {
  width: 100%;
  padding: 10px 30px;
  border: none;
  border-radius: 10px;
  background-color: #6b0092;
  color: white;
  cursor: pointer;
  outline: none;
}
.side-navigation .button-logout button {
  color: white;
}
.side-navigation .button-logout:hover {
  background-color: #940cc5;
}
.side-navigation .button-logout:focus {
  outline: none;
}

@media (max-width: 768px) {
  .container .side-bar {
    width: 0 !important;
    min-height: 100vh;
  }
  .container .main-container {
    width: 100% !important;
  }
}
/* Subverses Page Styles */
.subverses-container {
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  background: #F5F5F5;
  font-family: Poppins;
}

.subverses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
  font-family: Poppins;
}
.subverses-header-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-arrow-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  margin-top: 4px;
}
.back-arrow-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.back-arrow-icon {
  width: 40px;
  height: 40px;
  color: #333;
}

.subverses-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.2;
  font-family: Poppins;
}

.subverses-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 0 0;
  font-weight: 400;
  font-family: Poppins;
}

.create-button {
  background: linear-gradient(135deg, #8024FE 0%, #CB0339 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}
.create-button:hover {
  transform: translateY(-2px);
}
.create-button-icon {
  width: 16px;
  height: 16px;
}

/* Pick your Interests Section */
.pick-interests-container {
  margin: 20px 0;
}

.pick-interests-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
}
.pick-interests-section .pick-interests-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pick-interests-section .pick-interests-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: Poppins;
}
.pick-interests-section .pick-interests-arrow-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.pick-interests-section .pick-interests-arrow-button:hover:not(:disabled) {
  background-color: rgba(139, 92, 246, 0.1);
}
.pick-interests-section .pick-interests-arrow-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pick-interests-section-arrow {
  width: 20px;
  height: 20px;
  color: #333;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}

.interests-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: Poppins;
}

.modal-close-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.modal-close-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.modal-close-button svg {
  width: 20px;
  height: 20px;
  color: #666;
}

.modal-content {
  padding: 24px;
}

.modal-selection-info {
  margin-bottom: 16px;
  text-align: center;
}

.modal-selection-text {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
}

.modal-topic-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.modal-topic-tag {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
  text-align: center;
  font-family: Poppins;
}
.modal-topic-tag:hover {
  border-color: #8024FE;
  background: #f8f6ff;
}
.modal-topic-tag.selected {
  background: #8024FE;
  color: white;
  border-color: #8024FE;
}

.modal-actions {
  display: flex;
  margin-top: 20px;
}

.modal-explore-button {
  background: #8024FE;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
  font-family: Poppins;
}
.modal-explore-button:hover:not(:disabled) {
  background: #6b1fd1;
}
.modal-explore-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Navigation Tabs */
.subverses-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
  margin-top: 40px;
}

.tab {
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 0.2s ease;
  font-family: Poppins;
}
.tab.active {
  color: #8223F8;
  font-weight: 600;
}
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #8B5CF6;
}

/* Topic Tags */
.topic-tags-container {
  margin-bottom: 30px;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.topic-tag {
  background: #F1F1F1;
  color: #374151;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  user-select: none;
  font-family: Poppins;
}
.topic-tag:hover {
  background: #e5e7eb;
}
.topic-tag.selected {
  background: #F9F0FF;
  color: #8223F8;
}

.selection-row {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 15px;
}

.selection-info {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.enter-button {
  background: linear-gradient(135deg, #8024FE 0%, #CB0339 100%);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.enter-button:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

.featured-subverse-video-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}

/* Mobile Subverses List */
.mobile-subverses-list {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.mobile-subverse-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.2s ease;
}
.mobile-subverse-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-subverse-avatar {
  flex-shrink: 0;
}

.mobile-avatar-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.mobile-subverse-info {
  flex: 1;
  min-width: 0;
}

.mobile-subverse-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
}

.mobile-subverse-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-join-button {
  background: transparent;
  border: 1px solid #8024FE;
  color: #8024FE;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  font-family: Poppins;
}
.mobile-join-button:hover {
  background: #6b1fd1;
}
.mobile-join-button.joined {
  background: #8223F8;
  border-color: #8223F8;
  color: white;
}
.mobile-join-button.joined:hover {
  background: #6b1fd1;
  border-color: #6b1fd1;
}

/* Recommended Subverses */
.recommended-subverses {
  margin-top: 30px;
}

.recommended-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.recommended-header img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.recommended-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: Poppins;
}

/* Mobile Recommended Subverses */
.mobile-recommended-subverses-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-recommended-subverse-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-recommended-subverse-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-recommended-subverse-avatar {
  flex-shrink: 0;
}

.mobile-recommended-avatar-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.mobile-recommended-subverse-info {
  flex: 1;
  min-width: 0;
}

.mobile-recommended-subverse-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
}

.mobile-recommended-subverse-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-recommended-join-button {
  background: transparent;
  color: #8B5CF6;
  border: 1px solid #8B5CF6;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  font-family: Poppins;
}
.mobile-recommended-join-button:hover {
  background: #7c3aed;
  color: white;
}
.mobile-recommended-join-button.joined {
  background: #8223F8;
  color: white;
}
.mobile-recommended-join-button.joined:hover {
  background: #6b1fd1;
}

.mobile-recommended-content-preview {
  border-radius: 8px;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mobile-recommended-preview-video,
.mobile-recommended-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Joined Subverses */
.joined-subverses {
  margin-top: 30px;
}
.joined-subverses-header {
  margin-bottom: 24px;
}
.joined-subverses-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  font-family: Poppins;
}
.joined-subverses-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0 0 0 15px;
  font-family: Poppins;
}
.joined-subverses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.joined-subverse-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #E9E9E9;
  transition: all 0.2s ease;
}

.joined-subverse-avatar {
  flex-shrink: 0;
}

.joined-avatar-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.joined-subverse-info {
  flex: 1;
  min-width: 0;
}

.joined-subverse-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
}

.joined-subverse-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.joined-subverse-arrow-button {
  background: #FFF0FB;
  border: 1px solid #8B5CF6;
  color: #8B5CF6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.joined-subverse-arrow-button:hover {
  background: #8B5CF6;
  color: white;
  transform: scale(1.05);
}
.joined-subverse-arrow-button svg {
  width: 20px;
  height: 20px;
  transform: rotate(315deg);
}

/* No joined subverses state */
.no-joined-subverses {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}
.no-joined-subverses h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  font-family: Poppins;
}
.no-joined-subverses p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 24px 0;
  font-family: Poppins;
}

.no-joined-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #ccc;
}
.no-joined-icon svg {
  width: 100%;
  height: 100%;
}

.explore-subverses-button {
  background: #8B5CF6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: Poppins;
}
.explore-subverses-button:hover {
  background: #7c3aed;
}

/* Suggested Subverses */
.suggested-subverses {
  margin-top: 30px;
}
.suggested-subverses-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.suggested-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.suggested-icon {
  width: 20px;
  height: 20px;
  color: #8B5CF6;
}

.suggested-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: Poppins;
}

/* Featured Subverse Card */
.featured-subverse {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e5e7eb;
}
.featured-subverse-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.featured-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-info {
  flex: 1;
}
.featured-info h3 {
  margin: 0 0 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  font-family: Poppins;
}
.featured-info p {
  margin: 0;
  color: #666;
  font-size: 1rem;
  font-family: Poppins;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-join-button {
  background: transparent;
  border: 1px solid #8B5CF6;
  color: #8B5CF6;
  padding: 11px 50px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Poppins;
  white-space: nowrap;
}
.featured-join-button:hover {
  background: #8B5CF6;
  color: white;
}
.featured-join-button.joined {
  background: #8223F8;
  border-color: #8223F8;
  color: white;
}
.featured-join-button.joined:hover {
  background: #6b1fd1;
  border-color: #6b1fd1;
}

.featured-arrow {
  width: 14px;
  height: 14px;
}

.featured-arrow-button {
  background: #FFF0FB;
  border: 1px solid #8223F8;
  color: #8223F8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.featured-arrow-button:hover {
  background: #8B5CF6;
  color: white;
}
.featured-arrow-button svg {
  width: 20px;
  height: 20px;
  rotate: 315deg;
}

.featured-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Video Thumbnails */
.video-thumbnails {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.video-thumbnail {
  min-width: 120px;
  height: 160px;
  border-radius: 8px;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.video-thumbnail:hover {
  transform: scale(1.02);
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subverse Icon Images */
.subverse-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.post-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  aspect-ratio: 9/16;
}

/* Subverses Grid */
.subverses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.subverse-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e5e7eb;
}
.subverse-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.subverse-card-info {
  flex: 1;
}

.subverse-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.subverse-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
}

.subverse-tagline {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subverse-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.subverse-join-button {
  background: transparent;
  color: #8B5CF6;
  border: 1px solid #8B5CF6;
  padding: 12px 90px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: Poppins;
  white-space: nowrap;
}
.subverse-join-button:hover {
  background: #8B5CF6;
  color: white;
}
.subverse-join-button.joined {
  background: #8223F8;
  border-color: #8223F8;
  color: white;
}
.subverse-join-button.joined:hover {
  background: #6b1fd1;
  border-color: #6b1fd1;
}

.subverse-arrow-button {
  background: transparent;
  border: 1px solid #8B5CF6;
  color: #8B5CF6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-weight: 600;
}
.subverse-arrow-button:hover {
  background: #8B5CF6;
  color: white;
}
.subverse-arrow-button svg {
  width: 20px;
  height: 20px;
  rotate: 315deg;
}

/* Responsive Design - Media Queries */
@media (max-width: 1023px) {
  .back-arrow-button {
    display: flex;
  }
  .pick-interests-section {
    display: block;
  }
  .topic-tags-container {
    display: none;
  }
  .mobile-subverses-list {
    display: flex;
  }
  .mobile-recommended-subverses-list {
    display: flex;
  }
  .featured-subverse,
  .subverses-grid {
    display: none;
  }
  .recommended-subverses .featured-subverse,
  .recommended-subverses .subverses-grid {
    display: none;
  }
  .subverses-container {
    padding: 15px;
  }
  .subverses-title {
    font-size: 2rem;
  }
  .subverses-header {
    flex-direction: column;
    align-items: stretch;
  }
  .create-button {
    align-self: flex-end;
    width: fit-content;
    display: none;
  }
  .modal-overlay {
    padding: 10px;
  }
  .interests-modal {
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-header {
    padding: 16px 20px 12px 20px;
  }
  .modal-title {
    font-size: 1.1rem;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-topic-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .modal-topic-tag {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .mobile-subverse-item {
    padding: 12px;
    gap: 12px;
  }
  .mobile-recommended-subverse-item {
    padding: 0px;
  }
  .mobile-avatar-image,
  .mobile-recommended-avatar-image {
    width: 45px;
    height: 45px;
  }
  .mobile-subverse-name,
  .mobile-recommended-subverse-name {
    font-size: 1rem;
  }
  .mobile-subverse-description,
  .mobile-recommended-subverse-description {
    font-size: 0.85rem;
  }
  .mobile-join-button,
  .mobile-recommended-join-button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .modal-explore-button {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  .topic-tags {
    justify-content: center;
  }
  .subverses-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .subverse-card-header {
    gap: 12px;
    margin-bottom: 16px;
  }
  .subverse-buttons {
    justify-content: center;
    gap: 10px;
  }
  .video-thumbnails {
    justify-content: flex-start;
  }
  .video-thumbnail {
    min-width: 100px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .subverses-container {
    padding-bottom: 80px;
  }
  .recommended-subverses {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .tab {
    font-size: 1rem !important;
  }
}
@media (max-width: 480px) {
  .subverses-container {
    padding-top: 100px;
  }
  .subverses-title {
    font-size: 1.75rem;
  }
  .topic-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .featured-subverse-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .featured-buttons {
    justify-content: center;
  }
  .suggested-header,
  .recommended-header {
    gap: 8px;
    margin-bottom: 20px;
  }
  .suggested-title,
  .recommended-title {
    font-size: 1rem;
  }
  .subverse-card-header {
    gap: 12px;
    margin-bottom: 16px;
  }
  .subverse-buttons {
    justify-content: center;
    gap: 8px;
  }
  .subverse-join-button {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
  .subverse-arrow-button {
    width: 32px;
    height: 32px;
  }
  .video-thumbnail {
    min-width: 80px;
    height: 120px;
  }
  .pick-interests-section {
    padding: 16px;
  }
  .pick-interests-title {
    font-size: 1rem;
  }
  .suggested-subverses-card {
    padding: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .subverses-container {
    padding-top: 120px;
    padding-left: 90px;
    padding-right: 31px;
    padding-bottom: 40px;
  }
  .video-thumbnails {
    display: none;
  }
}
/* Subverse Profile Page Styles */
.profile-join-button {
  background: transparent;
  color: #8B5CF6;
  border: 1px solid #8B5CF6;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Poppins;
}
.profile-join-button:hover {
  background: #8B5CF6;
  color: white;
}
.profile-join-button.joined {
  background: #8223F8;
  border-color: #8223F8;
  color: white;
}
.profile-join-button.joined:hover {
  background: #6b1fd1;
  border-color: #6b1fd1;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.load-more-button {
  background: #8B5CF6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Poppins;
}
.load-more-button:hover:not(:disabled) {
  background: #7C3AED;
}
.load-more-button:disabled {
  background: #A78BFA;
  cursor: not-allowed;
}

/* Subverse Profile Page */
.subverse-profile-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F5F5F5;
  z-index: 999;
  overflow-y: auto;
  padding-top: 80px;
  padding-left: 260px;
}

.subverse-profile-header {
  padding: 40px 40px 20px 34px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-back-button {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  margin-bottom: 16px;
}
.profile-back-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.profile-back-button svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.profile-header-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-avatar {
  flex-shrink: 0;
}

.profile-avatar-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-details {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px 0;
  font-family: Poppins;
  line-height: 1.2;
}

.profile-description {
  font-size: 1rem;
  color: #666;
  margin: 0 0 4px 0;
  font-family: Poppins;
  line-height: 1.4;
}

.profile-count {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
  font-family: Poppins;
}

.admin-badge {
  background: #dc3545;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
  margin-bottom: 16px;
}

.profile-message-button {
  background: linear-gradient(135deg, #8B5CF6 0%, #8223F8 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  font-family: Poppins;
  margin-top: 12px;
}
.profile-message-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.profile-content {
  padding: 20px;
}

/* Profile Loading State */
.profile-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  padding: 40px 20px;
}
.profile-loading p {
  color: #666;
  font-family: Poppins;
  margin: 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #8B5CF6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Infinite Scroll Styles */
.infinite-scroll-sentinel {
  min-height: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.loading-more-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loading-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.loading-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8B5CF6;
  animation: dot-bounce 1.4s ease-in-out infinite both;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes dot-bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.loading-more-text {
  color: #666;
  font-family: Poppins;
  font-size: 0.9rem;
}

/* Videos Loading State */
.videos-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.videos-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #8B5CF6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.videos-loading p {
  color: #666;
  font-family: Poppins;
  margin: 0;
}

/* No Videos State */
.no-videos {
  text-align: center;
  padding: 20px 20px;
}
.no-videos h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  font-family: Poppins;
}
.no-videos p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  text-align: center;
}

.no-videos-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #ccc;
}
.no-videos-icon svg {
  width: 100%;
  height: 100%;
}

/* Profile Error State */
.profile-error {
  padding: 40px 20px;
  text-align: center;
}
.profile-error p {
  color: #dc3545;
  font-family: Poppins;
  margin-bottom: 20px;
}
.profile-error button {
  background: #8B5CF6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: Poppins;
}
.profile-error button:hover {
  background: #7c3aed;
}

/* Skeleton Loading Styles */
.subverse-profile-avatar-skeleton {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
}

.subverse-profile-name-skeleton {
  width: 60% !important;
  height: 28px !important;
  border-radius: 8px;
}

.subverse-profile-description-skeleton {
  width: 100% !important;
  height: 16px !important;
  border-radius: 6px;
}

.subverse-profile-count-skeleton {
  width: 40% !important;
  height: 18px !important;
  border-radius: 6px;
}

.subverse-profile-join-button-skeleton {
  width: 100px !important;
  height: 40px !important;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .subverse-profile-page {
    padding-left: 0;
    padding-top: 50px;
  }
  .subverse-profile-avatar-skeleton {
    width: 55px !important;
    height: 55px !important;
  }
  .subverse-profile-name-skeleton {
    width: 65% !important;
    height: 26px !important;
  }
  .subverse-profile-join-button-skeleton {
    width: 95px !important;
    height: 38px !important;
  }
}
@media (max-width: 768px) {
  .subverse-profile-page {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .profile-content {
    padding: 16px;
  }
  .subverse-profile-header {
    padding: 16px;
    flex-wrap: wrap;
  }
  .profile-header-info {
    flex-wrap: wrap;
  }
  .profile-avatar-image {
    width: 70px;
    height: 70px;
  }
  .subverse-profile-avatar-skeleton {
    width: 70px !important;
    height: 70px !important;
  }
  .profile-name {
    font-size: 1.3rem;
  }
  .subverse-profile-name-skeleton {
    width: 70% !important;
    height: 24px !important;
  }
  .profile-description {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .profile-join-button {
    flex-basis: 100%;
  }
  .subverse-profile-description-skeleton {
    height: 14px !important;
  }
  .subverse-profile-count-skeleton {
    width: 50% !important;
    height: 16px !important;
  }
  .subverse-profile-join-button-skeleton {
    width: full !important;
    height: 36px !important;
    flex-basis: 100%;
  }
}
/* Dashboard Page Styles */
.dashboard-container {
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  background: #f5f5f5;
  font-family: Poppins;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
  font-family: Poppins;
}

.dashboard-back-button {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 8px;
  color: #333;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.dashboard-back-button:hover {
  color: #8223f8;
}

.dashboard-back-icon {
  width: 20px;
  height: 20px;
  font-size: 1.25rem;
}

.dashboard-header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.dashboard-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.2;
  font-family: Poppins;
}

.dashboard-welcome {
  font-size: 1rem;
  color: #666;
  margin: 10px 0 0 0;
  font-weight: 400;
  font-family: Poppins;
}

.new-video-button {
  background: linear-gradient(135deg, #8024fe 0%, #cb0339 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
  font-family: Poppins;
}
.new-video-button:hover {
  transform: translateY(-2px);
}
.new-video-button-icon {
  width: 16px;
  height: 16px;
}

/* Navigation Tabs */
.dashboard-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 25px;
  margin-top: 40px;
}

.dashboard-tabs-dropdown {
  display: none;
}

.dashboard-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  font-family: Poppins;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dashboard-select:focus {
  outline: none;
  border-color: #8223f8;
  box-shadow: 0 0 0 3px rgba(130, 35, 248, 0.1);
}

.dashboard-tab {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
  transition: color 0.2s ease;
  font-family: Poppins;
}
.dashboard-tab.active {
  color: #8223f8;
  font-weight: 600;
}
.dashboard-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #8b5cf6;
}
.dashboard-tab:hover:not(.active) {
  color: #8223f8;
}

/* Responsive Design - Media Queries */
@media (max-width: 1023px) {
  .dashboard-container {
    padding: 15px;
  }
  .dashboard-title {
    font-size: 2rem;
  }
  .dashboard-header {
    flex-direction: row;
    align-items: flex-start;
  }
  .new-video-button {
    align-self: flex-end;
    width: fit-content;
  }
}
@media (max-width: 768px) {
  .dashboard-header {
    margin-bottom: 16px;
  }
  .dashboard-header-left {
    align-items: center;
    gap: 8px;
  }
  .dashboard-back-button {
    display: flex;
  }
  .dashboard-title {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .dashboard-tabs {
    display: none;
  }
  .dashboard-tabs-dropdown {
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .dashboard-tab {
    font-size: 1rem !important;
    padding: 10px 16px;
  }
}
@media (max-width: 480px) {
  .dashboard-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .dashboard-title {
    font-size: 1.75rem;
  }
  .dashboard-welcome {
    font-size: 0.9rem;
  }
  .new-video-button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  .dashboard-tabs {
    margin-top: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dashboard-tab {
    font-size: 0.9rem !important;
    padding: 8px 12px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .dashboard-container {
    padding-top: 100px;
    padding-left: 80px;
    padding-right: 32px;
    padding-bottom: 20px;
  }
  .dashboard-back-button {
    display: none;
  }
  .dashboard-tabs-dropdown {
    display: none;
  }
}
.content-top-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1023px) {
  .content-top-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .content-top-metrics {
    grid-template-columns: 1fr;
  }
}

.content-views-section {
  margin-bottom: 1.5rem;
}

.content-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .content-bottom-section {
    grid-template-columns: 1fr;
  }
}

.total-views-stat {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}
.total-views-stat .total-views-header {
  margin-bottom: 1rem;
}
.total-views-stat .total-views-title {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin: 0;
  font-family: Poppins, sans-serif;
}
.total-views-stat .total-views-content .total-views-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: #8223f8;
  font-family: Poppins, sans-serif;
}

.activity-distribution-card {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}
.activity-distribution-card .activity-distribution-title {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin: 0 0 1.5rem 0;
  font-family: Poppins, sans-serif;
}
.activity-distribution-card .activity-chart-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.activity-distribution-card .activity-chart-container .doughnut-chart-wrapper {
  width: 100%;
  max-width: 350px;
  height: 350px;
}
@media (max-width: 767px) {
  .activity-distribution-card .activity-chart-container {
    flex-direction: column;
    min-height: auto;
    padding: 1rem 0;
  }
  .activity-distribution-card .activity-chart-container .doughnut-chart-wrapper {
    max-width: 70vw;
    height: 280px;
  }
  .activity-distribution-card .activity-chart-container .doughnut-chart-wrapper :global([class*="chartjs-legend"]) {
    margin-top: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .activity-distribution-card .activity-chart-container .doughnut-chart-wrapper {
    max-width: 450px;
    height: 450px;
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
}

.post-metrics-card {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}

.post-metrics {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-metrics .post-metrics-title {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin: 0 0 1.5rem 0;
  font-family: Poppins, sans-serif;
}
.post-metrics .post-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.post-metrics .post-metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.post-metrics .post-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-metrics .post-metric-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  font-family: Poppins, sans-serif;
}
.post-metrics .post-metric-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #8223f8;
  font-family: Poppins, sans-serif;
}
.post-metrics .post-metric-progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.post-metrics .post-metric-progress-fill {
  height: 100%;
  background-color: #8223f8;
  border-radius: 4px;
  transition: width 0.3s ease;
}

@media (max-width: 767px) {
  .activity-distribution-card {
    padding-bottom: 0rem;
  }
}
/* Dashboard Projects Section Styles */
.dashboard-projects-container {
  margin-top: 20px;
}

/* Mobile Dashboard Projects Section Header */
.dashboard-projects-section-header {
  display: none;
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #f0f0f0;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dashboard-projects-section-header:hover {
  background-color: rgba(139, 92, 246, 0.05);
}

.dashboard-projects-section-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  font-family: Poppins;
}

.dashboard-projects-section-chevron {
  font-size: 0.875rem;
  color: #666;
  transition: transform 0.2s ease;
}

/* Desktop Dashboard Projects Grid */
.dashboard-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .dashboard-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .dashboard-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dashboard-project-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.dashboard-project-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.036);
}

.dashboard-project-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.dashboard-project-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dashboard-project-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-project-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: Poppins;
}

.dashboard-project-tagline {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  font-family: Poppins;
  line-height: 1.4;
}

/* Mobile Dashboard Projects List */
.dashboard-projects-list {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.dashboard-project-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  transition: none;
}
.dashboard-project-item:hover {
  box-shadow: none;
}
.dashboard-project-item .dashboard-project-icon {
  flex-shrink: 0;
}

.dashboard-no-projects {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-family: Poppins;
}

/* Responsive Design for Dashboard Projects */
@media (max-width: 768px) {
  .dashboard-projects-section-header {
    display: flex;
  }
  .dashboard-projects-grid {
    display: none !important;
  }
  .dashboard-projects-list {
    display: flex;
    gap: 20px;
  }
  .dashboard-project-item {
    padding: 0;
    gap: 16px;
  }
  .dashboard-project-item .dashboard-project-icon {
    width: 50px;
    height: 50px;
  }
  .dashboard-project-item .dashboard-project-name {
    font-size: 1rem;
  }
  .dashboard-project-item .dashboard-project-tagline {
    font-size: 0.85rem;
  }
}
@media (min-width: 769px) {
  .dashboard-projects-section-header {
    display: none !important;
  }
  .dashboard-projects-list {
    display: none !important;
  }
  .dashboard-projects-grid {
    display: grid !important;
  }
}
.wallet-chart-card {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  .wallet-chart-card {
    padding: 1.5rem;
    gap: 2rem;
  }
}

.wallet-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 350px;
  width: 100%;
}
@media (max-width: 768px) {
  .wallet-chart-container {
    min-height: 280px;
  }
}

.wallet-labels-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .wallet-labels-container {
    max-width: 35vw;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #e5e7eb;
  }
}
@media (max-width: 768px) {
  .wallet-labels-container {
    gap: 1rem;
  }
}

.wallet-label-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .wallet-label-item {
    gap: 0.625rem;
  }
}

.wallet-label-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  display: block;
}

.wallet-label-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wallet-label-icon {
    width: 18px;
    height: 18px;
  }
}

.wallet-label-text {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  font-family: Poppins, sans-serif;
  flex: 1;
}
@media (max-width: 768px) {
  .wallet-label-text {
    font-size: 0.9rem;
  }
}

.wallet-label-count {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  font-family: Poppins, sans-serif;
  margin-left: auto;
}
@media (max-width: 768px) {
  .wallet-label-count {
    font-size: 0.95rem;
  }
}

.doughnut-chart-with-center-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doughnut-chart-with-center-wrapper .doughnut-chart-wrapper {
  width: 100%;
  max-width: 400px;
  height: 400px;
}
@media (max-width: 768px) {
  .doughnut-chart-with-center-wrapper .doughnut-chart-wrapper {
    max-width: 300px;
    height: 300px;
  }
}
.doughnut-chart-with-center-wrapper .doughnut-chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 10;
}
.doughnut-chart-with-center-wrapper .doughnut-chart-center-text .wallet-center-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.doughnut-chart-with-center-wrapper .doughnut-chart-center-text .wallet-center-number {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: #1f2937;
  font-size: 2rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .doughnut-chart-with-center-wrapper .doughnut-chart-center-text .wallet-center-number {
    font-size: 1.75rem;
  }
}
.doughnut-chart-with-center-wrapper .doughnut-chart-center-text .wallet-center-label {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .doughnut-chart-with-center-wrapper .doughnut-chart-center-text .wallet-center-label {
    font-size: 0.9rem;
  }
}

.table-view-container {
  width: 100%;
}

.table-view-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .table-view-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .table-view-stats-container {
    grid-template-columns: 1fr;
  }
}

.table-view-stat-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
}
@media (max-width: 768px) {
  .table-view-stat-card {
    padding: 12px;
  }
}
.table-view-stat-card.critical {
  border-color: #dc3545;
  background-color: #fef2f2;
}
.table-view-stat-card.success {
  border-color: #10b981;
  background-color: #f0fdf4;
}
.table-view-stat-card.warning {
  border-color: #f59e0b;
  background-color: #fffbeb;
}

.table-view-stat-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .table-view-stat-label {
    font-size: 12px;
  }
}
.table-view-stat-label.critical {
  color: #dc3545;
  font-weight: 500;
}
.table-view-stat-label.success {
  color: #10b981;
  font-weight: 500;
}
.table-view-stat-label.warning {
  color: #f59e0b;
  font-weight: 500;
}

.table-view-stat-value {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
}
@media (max-width: 768px) {
  .table-view-stat-value {
    font-size: 20px;
  }
}
.table-view-stat-value.critical {
  color: #dc3545;
}
.table-view-stat-value.success {
  color: #10b981;
}
.table-view-stat-value.warning {
  color: #f59e0b;
}

.table-view-cards-wrapper {
  max-height: 80vh;
  overflow-y: auto;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .table-view-cards-wrapper {
    max-height: none;
    overflow-y: hidden;
  }
}

.table-view-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .table-view-cards-container {
    gap: 10px;
  }
}

.table-view-card-container {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .table-view-card-container {
    border-radius: 6px;
  }
}

.table-view-card-header {
  padding: 16px;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
@media (max-width: 768px) {
  .table-view-card-header {
    padding: 12px;
  }
}
.table-view-card-header:hover {
  background-color: #f9fafb;
}

.table-view-card-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .table-view-card-header-content {
    gap: 12px;
    align-items: flex-start;
  }
}

.table-view-card-header-left {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 1024px) {
  .table-view-card-header-left {
    grid-template-columns: auto 1fr;
    column-gap: 12px;
  }
}
@media (max-width: 768px) {
  .table-view-card-header-left {
    grid-template-columns: auto 1fr;
    width: 100%;
    gap: 8px;
  }
}

.table-view-chevron-icon {
  font-size: 12px;
  color: #6b7280;
  user-select: none;
  flex-shrink: 0;
}

.table-view-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background-color: #f3f4f6;
  color: #374151;
  width: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .table-view-level-badge {
    width: auto;
    min-width: 80px;
    font-size: 11px;
    padding: 3px 8px;
  }
}
.table-view-level-badge.critical {
  background-color: #fee2e2;
  color: #dc3545;
}
.table-view-level-badge.error {
  background-color: #fef3c7;
  color: #f59e0b;
}
.table-view-level-badge.warning {
  background-color: #fef3c7;
  color: #f59e0b;
}
.table-view-level-badge.info {
  background-color: #dbeafe;
  color: #3b82f6;
}
.table-view-level-badge.success {
  background-color: #d1fae5;
  color: #10b981;
}

.table-view-level-icon {
  font-size: 14px;
  font-weight: bold;
}

.table-view-timestamp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  width: 200px;
}
@media (max-width: 1024px) {
  .table-view-timestamp {
    width: auto;
    min-width: 150px;
  }
}
@media (max-width: 768px) {
  .table-view-timestamp {
    width: 100%;
    font-size: 12px;
  }
}

.table-view-clock-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.table-view-path-container {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .table-view-path-container {
    width: 100%;
    grid-column: span 2;
  }
}

.table-view-path-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.table-view-path-code {
  font-family: monospace;
  font-size: 13px;
  background-color: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 768px) {
  .table-view-path-code {
    font-size: 12px;
    padding: 2px 6px;
  }
}

.table-view-status-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: monospace;
  border: 1px solid;
  background-color: transparent;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .table-view-status-badge {
    font-size: 12px;
    padding: 3px 8px;
  }
}

.table-view-card-content {
  padding: 16px;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .table-view-card-content {
    padding: 12px;
  }
}

.table-view-message-section {
  margin-bottom: 12px;
}

.table-view-message-text {
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
  background-color: #f3f4f6;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .table-view-message-text {
    font-size: 13px;
    padding: 10px;
  }
}

.table-view-file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .table-view-file-info {
    font-size: 11px;
    flex-wrap: wrap;
  }
}

.table-view-file-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.table-view-file-name {
  font-family: monospace;
}

.table-view-line-number {
  color: #3b82f6;
  margin-left: 8px;
}

.table-view-expanded-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .table-view-expanded-row {
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }
}

.table-view-expanded-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  min-width: 120px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .table-view-expanded-label {
    min-width: auto;
    font-size: 12px;
  }
}

.table-view-expanded-value {
  font-size: 13px;
  color: #111827;
  flex: 1;
  word-break: break-word;
}
@media (max-width: 768px) {
  .table-view-expanded-value {
    font-size: 12px;
  }
}

.table-view-payload-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.table-view-payload-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  background-color: #f0f2f4;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .table-view-payload-toggle {
    font-size: 13px;
    padding: 6px 0;
  }
}

.table-view-code-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.table-view-payload-toggle-text {
  font-size: 12px;
  color: #6b7280;
  margin-left: auto;
}
@media (max-width: 768px) {
  .table-view-payload-toggle-text {
    font-size: 11px;
  }
}

.table-view-payload-content {
  margin-top: 12px;
}

.table-view-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .table-view-card-footer {
    gap: 12px;
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.table-view-footer-text {
  font-family: monospace;
}

.table-view-mobile-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .table-view-mobile-list {
    padding: 0px;
    gap: 12px;
  }
}

.table-view-no-data {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .table-view-no-data {
    padding: 30px 15px;
    font-size: 14px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    margin-bottom: 16px;
  }
}

.filters-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .filters-btn {
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

.select {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  min-width: 200px;
  padding: 10px 36px 10px 12px;
  border-radius: 6px;
  margin-bottom: 0;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .select {
    width: 100%;
    min-width: 100%;
    padding: 12px 36px 12px 12px;
    font-size: 15px;
  }
}
.select:hover {
  border-color: #d1d5db;
  background-color: #fff;
}
.select:focus {
  outline: none;
  border-color: #8223f8;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.select option {
  padding: 8px;
  background-color: #fff;
  color: #111827;
}

.custom-select-wrapper {
  position: relative;
  min-width: 200px;
  width: 100%;
}
@media (max-width: 768px) {
  .custom-select-wrapper {
    min-width: 100%;
  }
}

.custom-select-trigger {
  width: 100%;
  padding: 10px 10px 10px 12px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  min-height: 40px;
}
@media (max-width: 768px) {
  .custom-select-trigger {
    padding: 12px 36px 12px 12px;
    font-size: 15px;
    min-height: 44px;
  }
}
.custom-select-trigger:hover {
  border-color: #d1d5db;
  background-color: #fff;
}
.custom-select-trigger.open {
  border-color: #8223f8;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(130, 35, 248, 0.1);
}
.custom-select-trigger.placeholder {
  color: #9ca3af;
}
.custom-select-trigger:focus {
  outline: none;
}

.custom-select-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-chevron {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-left: 8px;
}
.custom-select-chevron.open {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  animation: slideDown 0.15s ease-out;
}
@media (max-width: 768px) {
  .custom-select-dropdown {
    max-height: 250px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.custom-select-options {
  list-style: none;
  margin: 0;
  padding: 4px;
}

.custom-select-option {
  padding: 10px 12px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
  user-select: none;
}
@media (max-width: 768px) {
  .custom-select-option {
    padding: 12px;
    font-size: 15px;
  }
}
.custom-select-option:hover, .custom-select-option.highlighted {
  background-color: #f3f4f6;
  color: #111827;
}
.custom-select-option.selected {
  background-color: rgba(130, 35, 248, 0.1);
  color: #8223f8;
  font-weight: 500;
}
.custom-select-option.selected:hover, .custom-select-option.selected.highlighted {
  background-color: rgba(130, 35, 248, 0.1);
  color: #8223f8;
}
.custom-select-option:active {
  background-color: #e5e7eb;
}

.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 3px;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.feedback-view-container {
  width: 100%;
}

.feedback-view-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .feedback-view-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .feedback-view-stats-container {
    grid-template-columns: 1fr;
  }
}

.feedback-view-stat-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
}
@media (max-width: 768px) {
  .feedback-view-stat-card {
    padding: 12px;
  }
}
.feedback-view-stat-card.bug {
  border-color: #dc3545;
  background-color: #fef2f2;
}
.feedback-view-stat-card.feature {
  border-color: #10b981;
  background-color: #f0fdf4;
}

.feedback-view-stat-label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .feedback-view-stat-label {
    font-size: 12px;
  }
}
.feedback-view-stat-label.bug {
  color: #dc3545;
  font-weight: 500;
}
.feedback-view-stat-label.feature {
  color: #10b981;
  font-weight: 500;
}

.feedback-view-stat-value {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
}
@media (max-width: 768px) {
  .feedback-view-stat-value {
    font-size: 20px;
  }
}
.feedback-view-stat-value.bug {
  color: #dc3545;
}
.feedback-view-stat-value.feature {
  color: #10b981;
}

.feedback-view-cards-wrapper {
  max-height: 80vh;
  overflow-y: auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .feedback-view-cards-wrapper {
    max-height: none;
    overflow-y: hidden;
  }
}

.feedback-view-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .feedback-view-cards-container {
    gap: 10px;
  }
}

.feedback-view-card-container {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .feedback-view-card-container {
    border-radius: 6px;
  }
}
.feedback-view-card-container:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.feedback-view-card-header {
  padding: 16px;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
@media (max-width: 768px) {
  .feedback-view-card-header {
    padding: 12px;
  }
}
.feedback-view-card-header:hover {
  background-color: #f9fafb;
}

.feedback-view-card-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feedback-view-card-header-content {
    gap: 12px;
    align-items: flex-start;
  }
}

.feedback-view-card-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .feedback-view-card-header-left {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .feedback-view-card-header-left {
    width: 100%;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.feedback-view-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 18%;
}
@media (max-width: 768px) {
  .feedback-view-user-info {
    width: 100%;
  }
}

.feedback-view-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e5e7eb;
}
@media (max-width: 768px) {
  .feedback-view-user-avatar {
    width: 36px;
    height: 36px;
  }
}

.feedback-view-user-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.feedback-view-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .feedback-view-user-name {
    font-size: 13px;
  }
}

.feedback-view-app-name.mobile {
  display: none;
}

@media (max-width: 768px) {
  .feedback-view-app-name {
    display: none;
  }
  .feedback-view-app-name.mobile {
    display: block;
  }
}
.feedback-view-badges-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 12%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .feedback-view-badges-container {
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }
}

.feedback-view-app-name {
  font-size: 12px;
  color: #8223F8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #F6F0F8;
  border-radius: 14px;
  padding: 6px 12px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .feedback-view-app-name {
    font-size: 11px;
    padding: 4px 10px;
  }
}

.feedback-view-type-badge-container {
  width: 11%;
}

.feedback-view-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  width: fit-content;
}
@media (max-width: 768px) {
  .feedback-view-type-badge {
    font-size: 11px;
    padding: 3px 10px;
  }
}
.feedback-view-type-badge.feature {
  background-color: #d1fae5;
  color: #10b981;
}
.feedback-view-type-badge.bug {
  background-color: #fee2e2;
  color: #dc3545;
}

.feedback-view-preview {
  width: 50%;
}
@media (max-width: 768px) {
  .feedback-view-preview {
    width: 100%;
  }
}

.feedback-view-preview-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .feedback-view-preview-text {
    font-size: 12px;
    -webkit-line-clamp: 3;
    display: none;
  }
}

.feedback-view-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-view-chevron-icon {
  font-size: 14px;
  color: #6b7280;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .feedback-view-chevron-icon {
    font-size: 12px;
  }
}

.feedback-view-card-content {
  padding: 16px;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .feedback-view-card-content {
    padding: 12px;
  }
}

.feedback-view-description-section {
  margin-bottom: 12px;
}

.feedback-view-description-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.feedback-view-description-icon {
  font-size: 16px;
  color: #6b7280;
  flex-shrink: 0;
}

.feedback-view-description-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.feedback-view-description-app-name {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 8px;
  padding: 2px 8px;
  background-color: #f3f4f6;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .feedback-view-description-app-name {
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 6px;
  }
}

.feedback-view-description-text {
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
  background-color: #fff;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  white-space: pre-wrap;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .feedback-view-description-text {
    font-size: 13px;
    padding: 10px;
  }
}

.feedback-view-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feedback-view-card-footer {
    gap: 12px;
    font-size: 11px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.feedback-view-footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feedback-view-footer-label {
  color: #6b7280;
  font-weight: 500;
}

.feedback-view-footer-value {
  color: #111827;
  font-weight: 600;
}

.feedback-view-mobile-list {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .feedback-view-mobile-list {
    padding: 0px;
    gap: 12px;
  }
}

.feedback-view-no-data {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}
@media (max-width: 768px) {
  .feedback-view-no-data {
    padding: 30px 15px;
    font-size: 13px;
  }
}

*::-webkit-scrollbar {
  background: transparent;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html,
body {
  scrollbar-width: none; /* Firefox */
  -moz-scrollbar-width: none;
  -ms-overflow-style: none; /* IE and Edge */
}

html {
  -ms-scroll-snap-type: mandatory;
  scroll-snap-type: y mandatory;
  line-height: 1.5;
  overflow: hidden;
  width: 100%;
}

body {
  height: 100%;
  position: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.container {
  width: 100vw;
  display: flex;
  height: 100%;
  min-height: 100vh;
}
.container .side-bar {
  position: relative;
  width: 200px;
  height: inherit;
  min-height: 100vh;
}
.container .main-container {
  width: calc(100% - 200px);
  height: inherit;
  min-height: 100vh;
  overflow-y: auto;
  background-color: #f5f5f5;
}

.overlay {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 9999;
  background: rgba(128, 128, 128, 0.397);
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

button,
input,
.form-group textarea,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder, .form-group textarea::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.back-btn,
.select-btn,
.delete-btn,
.load-more-btn {
  padding: 0.4rem;
  min-width: 4rem;
  background-color: white;
  border-radius: 0.4rem;
  cursor: pointer;
  height: 2rem;
}

.delete-btn {
  background-color: red;
  color: white;
  width: 100%;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.post-item {
  position: relative;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.post-item video {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.video-error {
  color: red;
  font-size: 1.2rem;
  padding: 20px;
}

.delete-btn {
  background-color: red;
  color: white;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

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