body {
  /* THIS is not a good way to handle this, and a proper refactoring needs to be performed
    This allows bigger images of media on listings for large screens
    It would be great to adapt to other sizes, but this requires a good refaftoring
     */

  @media screen and (min-width: 2200px) {
      --default-item-width: 342px !important;
      --default-max-item-width: 342px !important;
      --default-item-margin-right-width: 17px !important;
      --default-item-margin-bottom-width: 27px !important;
  }
}

/**
 * Removes the "Powered by mediacms.io" at the bottom of the sidebar.
 */
.page-sidebar .page-sidebar-bottom {
    display: none;
}


/**
 * Hides the "About" link in the sidebar.
 */
.page-sidebar a[href="/about"] {
    display: none !important;
}



/**
 * Fix for the magnifying glass in the user profile.
 * Some of the Spanish localization texts are too long and break things.
 */
.items-list-wrap li a {
	min-width: fit-content;
}





/**
 * Hides the Download option in nav-menu.
 */
.nav-menu button[data-page-id="videoDownloadOptions"] {
    display: none !important;
}






/**
 * Hides the Status info option in nav-menu.
 */
.nav-menu button[data-page-id="mediaStatusInfo"] {
    display: none !important;
}




/**
 * Hides both Download + Status info options in nav-menu.
 */
.nav-menu button[data-page-id="videoDownloadOptions"],
.nav-menu button[data-page-id="mediaStatusInfo"] {
    display: none !important;
}











/**
 * Hide the floating link back to the uploader's profile in embedded videos
 */
.media-links-top-left {
	display: none !important;	
}

