/* Base style setup for application and top header. */

html,
body { 

   /* Standard Device breakpoints.  Reuse these in applicable css sections.
   Mobile: max-width: 768px
   Tablet: 769px–1024px
   Desktop: min-width: 1025px
   */

   /*Define app page layout.*/
   width: 100%;
   height: 100%;
   background-color: White;
   padding: 0;
   margin: 0;
   overflow: hidden;
}

   .page-layout {
      display: flex;
      flex-direction: column;
      width: 100%;
      min-height: 100dvh;
      margin: 0 auto;
   }
   .appheader {
      display: flex;
      flex: 0 0 auto;
      align-items: center;
      margin-left: 0px;
      background: #ebe1e1;
      box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.3);
   }

   /*Define heading styles. */
   h1 {font-size: 20px; font-family:arial;font-weight: bold;}
   h2 {font-size: 20px; font-family:calibri;}
   h3 {font-size: 16px;font-weight: bold; font-family:calibri; white-space:pre-line;margin-top:0px}

   /*Define About button style. */
   .about-button {
      font-family: calibri;
      font-size: 14px;
      border-radius: 8px;
      color: black;
      margin-left: 50px;
      background-color: white;
   }
   .about-modal-header {
      padding: 5px;
      background-color: #ebe1e1;
      color: black;
      cursor: move;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      user-select: none;
   }
   .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.5);
      border: 1px solid black;
   }
   .modal-content {
      background-color: #fff;
      margin: 15% auto;
      border: 1px solid #ccc;
      width: 60%;
      max-width: 500px;
      border-radius: 8px;
      font-family: calibri;
      font-size: 16px;
   }
   #aboutContent {
      padding: 15px;
   }
   .close {
      float: right;
      font-size: 20px;
      cursor: pointer;
      font-size: 25px;
      line-height:1;
   }
   .close:hover {
      color: red;
   }

   /*School Year Display and Change styles */
   div.schoolyeardisplayvariable{
      margin-left: 50px;
      display: inline-block;
      padding: 5px;
   }
   div.schoolchangedisplayvariable{
      margin-left: 20px;
      display: inline-block;
      padding: 5px;
   }


