/* Modify core HTML elements. */

/* Page background. */
html
  {
  background-color: rgb(182, 246, 255);
  }
  
/* HTML body. */
body
  {
  /* Make the text a nice dark red. */
  color: rgb(102, 68, 18);
  }

/* Links. */
a
  {
  /* Make the text a dark red. */
  color: #664400;
  }

/* Hover links. */
a:hover
  {
  /* Use a brighter red for this one. */
  color: #aa0000;
  }

/* Active links. */
a:active
  {
  /* Make the text a nice dark red. */
  color: #440000;
  }

/* Header. */
div.header
  {
  /* Add a rule. */
  border-bottom: 1px solid #ddaaaa;
  
  /* Folder colour background. */
  background-color: rgb(182, 246, 255);
  }
  
.content_backdrop
  {
  /* Use pale yellow background. */
  background-color: rgb(255, 254, 244);
  }

/* Footer menu and backdrop. */
#footer
  {
  /* Add a border and transparent green background colour. */
  border-top: 1px solid #aaaadd;

  /* Blue background. */
  background-color: rgb(182, 246, 255);
  }

@media (prefers-color-scheme: dark)
  {
  /* Page background */
  html
    {
    background-color: rgba(13, 13, 18);
    }

  /* HTML body. */
  body
    {
    /* Make the text a nice pale blue. */
    color: #ccccff;
    }

  .content_backdrop
    {
    /* Use blue background. */
    background-color: rgb(12, 3, 4);
    }

  /* Links. */
  a
    {
    /* Make the text a nice pale blue. */
    color: #ccccff;
    }

  /* Hover links. */
  a:hover
    {
    /* Use a darker blue for this one. */
    color: #8888ee;
    }

  /* Active links. */
  a:active
    {
    /* Make the text a nice pale yellow. */
    color: #6666ee;
    }

  /* Header. */
  div.header
    {
    /* Add a rule. */
    border-bottom: 1px solid #3a3a3d;
    
    /* Blue background. */
    background-color: rgba(13, 13, 18);
    }
 
  /* Footer. */
  #footer
    {
    /* Add a border and transparent green background colour. */
    border-top: 1px solid #3a3a3d;

    /* Blue background. */
    background-color: rgba(13, 13, 28);
    }
  }

/* Don't let the header get small enough to wrap. */
div.header
  {
  min-width: 905px;
  }
    
/* Don't let the menu get small enough to wrap. */
ul.menu
  {
  min-width: 520px;
  }

div.header td
  {
  vertical-align: middle;
  }

div.header h1,
h1.title
  {
  margin: 15px;
  }

dt
  {
  font-weight: bold;
  }

dd
  {
  margin-bottom: 1em;
  }
  
dl.faq dd
  {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  }

.title img
  {
  vertical-align: -15px;
  margin: 0;
  height: 48px;
  width: 48px;
  }

/* Take the app name and icon, float it right and center vertically. */
.title .app
  {
  }
  
/* Make the app name dark blue and bold. */
.title span.app
  {
  vertical-align: middle;
  font-weight: bold;
  margin-left: 10px;
  }

/* Use the correct size for the app icon. */
.title .app img
  {
  width: 48px;
  height: 48px;
  vertical-align: middle;
  }

.maslink
  {
  padding: 5px;
  padding-left: 10px;

  float: right;

  font-size: .75em;
  font-weight: bold;
  text-align: left;
  
  text-decoration: none;
  
  position: relative;
  display: block;
  width: 300px;
  padding-top: 15px;

  -webkit-transition: color .5s;
  }

.maslink span
  {
  position: absolute;
  top: 15px;
  right: 200px;
  width: 110px;
  height: 40px;
  text-align: right;
  }

.maslink img
  {
  width: 200px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: opacity .5s;
  }

.maslink img.nohover
  {
  opacity: 1;
  }

.maslink img.hover
  {
  opacity: 0;
  }

.maslink:hover img.nohover
  {
  opacity: 0;
  }

.maslink:hover img.hover
  {
  opacity: 1;
  }

.background,
  {
  position: fixed;
  top: 100px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  }

.background
  {
  z-index: 0;  
  }
  
.foreground
  {
  z-index: 1000;
  }

.footer
  {
  z-index: 1100;
  }

td.download a.maslink,
div.column a.maslink
  {
  float: none;
  display: inline-block;
  width: 200px;
  padding-top: 0px;
  position: relative;
  top: -20px;
  }

ul.terms li
  {
  margin-bottom: 10px;
  }

td.download a.maslink
  {
  margin-left: 25px;
  }

td.download a.download_link
  {
  font-size: 90%;
  top: 0px;
  width: 198px;
  }

td.download a.download_link span
  {
  display: inline-block;
  width: 100px;
  font-size: 1.3em;
  line-height: 1em;
  position: relative;
  top: 9px;
  }

td.download a.download_link img
  {
  position: relative;
  top: 2px;
  }

.dark
  {
  display: none;
  }

@-moz-document url-prefix()
  {
  .title span.app
    {
    position: relative;
    top: 3px;
    }
  }

@media (prefers-color-scheme: dark)
  {
  .aqua
    {
    display: none;
    }

  .dark
    {
    display: inherit;
    }
  }

#explorer img
  {
  width: 40%;
  float: right;
  position: relative;
  display: inline-block;
  }

.features td
  {
  vertical-align: top;
  }
  
#share img
  {
  width: 400px;
  }

#explorer_window img
  {
  width: 600px;
  }

#storage_monitor_window img
  {
  width: 500px;
  }

#unreadable_folders_window img
  {
  width: 500px;
  }

#accessibility_features img
  {
  width: 500px;
  }

#learnMoreWindow
  {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 16px;
  padding: 16px;
  background-color: rgb(50, 50, 50);
  display: none;
  z-index: 4000;
  text-align: center;
  }
        
#learnMoreWindow video
  {
  width: 100%;
  aspect-ratio: 16 / 9;
  }
  
#learnMoreWindow button
  {
  }
  
#learnMoreWindow.show
  {
  display: block;
  }

#shade
  {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 3999;
  }

#shade.show
  {
  display: block;
  }

#videoSources
  {
  display: none;
  }
