



html { width: 100%; display: flex; }
body { width: 100%; display: absolute; }

  
  
  
  /* Border of the solver */
  .content {
    border-width: 5px;
    border-style: groove;
    border-radius: 2em;
    border-image:linear-gradient(rgb(61, 0, 202), rgb(78, 25, 201), rgb(255, 136, 0),white) 10%;
    width: 380px;
    height:610px;
   
    
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 0px;
    margin-right: 10px;
    margin-top: 0px;
    
  }

  
  
  /* Title of the solver */
  h2{
    font-size: xx-large;
    font-weight: 300;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
    padding:0px;
    
    font-family: 'Righteous', cursive;
    
    background: -webkit-linear-gradient(rgb(61, 0, 202), rgb(78, 25, 201), rgb(253, 147, 25),white);
    /*-webkit-linear-gradient(rgb(75, 0, 248), rgb(255, 136, 0),white);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

 
   /* Table 01 where the flash message appears, i.e., Output */
    #t01 {
    border: 1px solid rgb(61, 0, 202);
    width: 84.5%;
    height:13%;
    padding-left: 20px;
    margin-left:20px;
    margin-bottom:30px;
    margin-top:20px;
    box-sizing: content-box;
    border-radius: 4px;
    background-color: #f8f7ff;
    font-family: 'Roboto', sans-serif;
    font-size: large;
    font-weight: 150;
  }

     /* Text of the output--inside (flashed message)Table 01*/
  h3 {
    font-size: x-large;
    font-weight: 150;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: start;
    letter-spacing: -1px;
    color: #3900bd;
    font-family: 'Roboto', sans-serif;
  }
   

   /* Table 02 where all the form components reside--form labels */
  #t02 {
    
    padding-left: 4px;
    text-align: left; 
    font-family: 'Roboto', sans-serif;
    font-size: large;
    font-weight: 100;   
    color:rgb(43, 1, 141);
    font-style: italic;
    padding-right: 0px;
    width: max-content;
   

  }

  
  /* Inputs of the form--user's inputs */
  input[type=text] {
    width: 180px;
    padding: 10px 10px;
    box-sizing: border-box;
    border: 0.5px solid #6136ff;
    border-radius: 4px;
    background-color: #eeebff;
    color: rgb(61, 0, 202);
    font-family: 'Roboto', sans-serif;
    font-size: large;
    font-weight: 100;
    margin-bottom:10px;
    margin-left:0px;
    margin-right:5px;
    
  }
  
  /* Input boxes are highlighted once hovered over */
  input[type=text]:focus {
    border: 2px solid rgb(245, 211, 21);
    background-color: rgb(252, 243, 238);
  }
  
  /* Submit buttons of the form */
  input[type="submit"] {
    background-color: #6136ff;
    border: 2px groove rgb(47, 1, 248);
    border-radius: 6px;
    color: white;
    padding: 7px 5px;
    text-decoration: none;
    margin-left: 15px;
    margin-right: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    width: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: small;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    transition-duration: 0.4s
  }

  input[type=submit]:hover {
    background-color: #efecfa;
    color: rgb(10, 10, 10);
  }
/* Submit buttons can be given individual classes so their properties can be customized */
  input[type="submit"].reset {
    background-color:#ffab2d;
    border: 2px groove rgb(252, 146, 25);
    margin-left: 10px;
    margin-right: 5px;
    
  }
  input[type=submit].reset:hover {
    background-color: #efecfa;
    color: rgb(10, 10, 10);
  }
  
  /* Dont think it does anything anymore */
  
  div.form-field {
    font-size: large;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0px;
    text-align: start;
    letter-spacing: 1px;
    color: rgb(43, 8, 241);
    font-family: 'Roboto', sans-serif;
    
  }
  
  /* Developer signature*/
  h4 {
    font-size: medium;
    font-weight: 150;
    margin-top: -10px;
    margin-left: 5px;
    margin-bottom: 10px;
    padding-left: 0px;
    padding-top: 5px;
    
    text-align: start;
    letter-spacing: 0px;
    color: rgb(41, 2, 66);
    font-family: 'Alex Brush', cursive;
    position: absolute;
    
    
  }

  /* Tip infomation is appear upon hover - the bottom tooltip */
  .tooltip {
    position: absolute;
    display: inline-block;
    border-bottom: 1px dotted rgb(247, 112, 1);
    font-family: 'Roboto', sans-serif;
    margin-left:0px;
    margin-bottom:10 px;
     margin-top:10px;
    font-style: italic;
    padding-left: 10px;
    padding-top: 20px;
  }
  
  /* The text of the tip itself */
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 317px;
    background-color: #ffcc6c;
    color: black;
    text-align: left;
    border-radius: 6px;
    padding: 8px 8px;
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 12%;
    margin-left: 0px;
    margin-top:10 px;
    font-family: 'Roboto', sans-serif;
    
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 0.95;


   /* Mostly used to controlthe position of the dropdown menu */ 
  }
  .dropdown-content {
    display: inline-table;
    position: relative;
    background: none;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
    margin-right: 127px;
    margin-top: 7px;
    margin-left:0px;

    
  }
 /* To customize the content of the dropdown menu-- .form-control is introduced inside form variable:{{ form.py (class_="form-control") }} */ 
  .form-control {
    font-family: 'Roboto', sans-serif;
    font-size: medium;
    color: rgb(61, 0, 202);
    width: 60px;
    height: 25px;
   
    border-radius: 4px;
    background-color: #eeebff;
    border: 1px groove rgb(61, 0, 202);
    

  }


