a{
    text-decoration: none;
}

a:hover{
    color:white;
    
}

.my-link:hover{
    color:cornflowerblue;
}

body,div,input{

    font-family: 'Kanit', sans-serif; 
    font-size: 16px;

}

input{
    background-color: #667698;
}


.my-border{

    border-color: red;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    padding: 5px 0px 5px 10px;
}

.my-grid{
    display: grid;
    grid-template-rows: 70px auto;
    grid-template-columns: 20vw auto;
    margin: 0px;
}

.my-grid-cell1{
    background-color: #667698;
    padding-left: 30px ;
}

.my-grid-cell2{
    background-color: #dbdfea;    
    color: #667698;
    
}

.my-grid-cell3{
    background-color: #6a7ca2;
    padding: 30px;
}

.my-grid-cell4{
    background-color: #e7ebf6;
    display: flex ; 
    justify-content: space-between ; 
    align-items: flex-start;

}

.my-banner{
    background-color: white;
    border-radius: 2px;
    box-shadow: 7px 7px 15px #7083aa;
    color: #667698;
    padding: 10px;
    margin: 20px;
}

.my-banner1{
    background-color: white; 
    padding: 10px;
    line-height: 2rem;
    margin: 20px 10px 10px 20px; 
    width:23vw;
    border-radius: 2px;
    box-shadow: 7px 7px 15px #7083aa;
    color: #667698;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.my-banner2{

    background-color: white; 
    padding: 7px;
    margin:20px 30px 10px 0px; 
    width:51vw ;
    border-radius: 2px;
    box-shadow: 7px 7px 15px #7083aa;
    color: #667698;
}

.my-menu:hover{
    color: white;
}

.my-button-red{background-color:red; color:white; border-radius: 10px; border-width: 1px; padding: 3px 19px 2px 19px;box-shadow: 1px 1px 1px gray;}

.my-button-orange{background-color:orange; color:white; border-radius: 10px; border-width: 1px; padding: 3px 15px 2px 15px;box-shadow: 1px 1px 1px gray;}

.my-button-green{background-color:limegreen; border-radius: 10px; border-width: 1px; padding: 3px 7px 2px 7px;box-shadow: 1px 1px 4px gray;}

.my-button-blue{background-color:#6a7ca2;color:white; border-radius: 10px; border-width: 1px; padding: 3px 15px 2px 15px;box-shadow: 1px 1px 1px gray;}

.my-button-lightblue{background-color:cornflowerblue;color:white; border-radius: 10px; border-width: 1px; padding: 3px 7px 2px 7px;box-shadow: 1px 1px 1px gray;}



.my-shadow{ box-shadow: 2px 2px 8px gray; }

 
/* text decoration */

.bold{ font: bold; }
.my-underline{text-decoration: underline;}


/* text-color */

.blue{ color: cornflowerblue; }

.green{ color: forestgreen; }

.black{ color:black}

.red{ color: red; }


/* background color  */

.back-blue{ background-color: cornflowerblue; }

.back-green{ background-color: forestgreen; }

.back-red{ background-color: red; }

.back-light{ background-color: aquamarine; border:none } 





/* form */

.my-text{
    border: none; color: white ; 
    background-color: #6a7ca2 ;
    border-radius: 10px;
    padding: 7px;
}

.my-text2{
    border: 1px solid #6a7ca2; color: #6a7ca2 ; 
    background-color: white;
    border-radius: 10px;
    padding: 7px;
}



  /* Remove default bullets */
  ul, #myUL {
    list-style-type: none;
  }
  
  /* Remove margins and padding from the parent ul */
  #myUL {
    margin: 0;
    padding: 0;
  }
  
  /* Style the caret/arrow */
  .caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
  }
  
  /* Create the caret/arrow with a unicode, and style it */
  .caret::before {
    content: "\25B6";
    color:white;
    display: inline-block;
    margin-right: 6px;
  }
  
  /* Rotate the caret/arrow icon when clicked on (using JavaScript) */
  .caret-down::before {
    transform: rotate(90deg);
  }
  
  /* Hide the nested list */
  .nested {
    display: none;
    padding-left: 20px;
  }
  
  /* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
  .active {
    display: block;
  }  