/* 
 * This CSS file is shared between the App and Admin interfaces
 */

/* App has some inline overrides for color */
body {
  background-color: #486876;
  color: #fff;
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}

 
/* Protected cells */
td.protected button, td.protected div.buttons {
  opacity: 0 !important;
}

td.protected:hover button, td.protected:hover div.buttons {
  opacity: 1 !important;
}

/* Hide elements on mobile sized displays */
@media screen and (max-width: 600px) {
  .mobile.hidden {
    visibility: hidden;
    display: none;
  }
}