body, html {

    height: 100%;
    overflow: hidden;
    transition: background-color 0.5s ease;
  }

  /* menu */
  #menu{
    z-index: 10;
  }
#menu.open
{
    background-color: #333333;
    color: #dadada;
}
#menu-toggle-button
{
    margin-bottom: 10px;
}
.open #menu-toggle-button
{
    font-weight: 800;
}
#menu button
{
    margin-bottom: 10px;
}
.text-button {
  font-size: .8em;
  font-weight: 800;
  margin-right: 10px; /* Add margin between buttons */
  background-color: #111;
  padding: 6px;
  color: #fff;
}
.text-button:hover {
  background-color: #444;
}
#dropdown
{
    display: none;
}
.open #dropdown
{
    display: block;
}
#menu select {
    margin-bottom: 10px;
    padding: 5px;
    font-size: 14px;
    min-width: 100px;
    background-color: #000; /* Dark background color */
    color: #fff; /* Light text color */
}

/* image transforms */
/* .centered-square {
    position: relative;
    width: 95vmin;
    height: 95vmin;
    border-radius: 50%;
    overflow: hidden;
  } */
  #image-container
  {
    transition: all 0.5s ease-in-out;
  }
  .view-circle #image-container {
    position: relative;
    width: 95vmin;
    height: 95vmin;
    border-radius: 50%;
    overflow: hidden;
  }
  .view-fill #image-container
  {
    position: relative;
    width: 100vw;
    height: 100vh;
    border-radius: 0%;
  }
  .view-fit #image-container
  {
    position: relative;
    width: 90vw;
    height: 90vh;
    border-radius: 0%;
    /* overflow: hidden; */
  }
  
  .centered-square .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }
  .view-fit .centered-square .image
  {
    object-fit: contain;
    /* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); */
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  }

  #ticker
  {
    position: relative;
    /* top:20px;
    right: 40px; */
    width: 10em;
    height: .35em;
    /* background-color: red; */
  }
  #tick-bar
  {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: width 0.5s ease-out
  }
  /* .down .tick-bar
  {
    width: 5%;
  } */

  #m-image-preload{
    display: none;
    position: fixed;
    top: 0px; /* Adjust the distance from the bottom */
    right: 0px; /* Adjust the distance from the left */
    padding: 10px;
    width: 10vw;
  }
  .admin #m-image-preload{
    display: inherit;
  }
  #m-image-trans
  {
    /* opacity: .5; */
    pointer-events: none;
    /* left: 50px; */
  }
  
  #info-display
  {
    font-size: 2vmax;
    pointer-events: none;
  }
  #info-display a
  {
    pointer-events: auto;
  }
  /*meta text styles*/
  .time{
    /* font-size: 5vw; */
    font-size: 3em;
    margin-bottom: 0vw;
  }
  .am-pm
  {
    font-size: .6em;
    font-weight: 800;
  }
  .meta{
    font-size: 1em;
    /* margin-bottom: 0vw; */
    margin-top: .5em;
    margin-bottom: 0em;
  }

  /* size considerations */
  @media (min-width: 1500px), (min-height: 1500px) {
    #info-display {
        font-size: 40px;
    }
}