body {
    background: whitesmoke;
    color: black;
    text-align: center;
  }

img {
  border-radius: 10px;
}
  
  table {
    width: 100%;
    background: wheat;
    border: 1px solid;
    border-collapse: collapse;
   
  }

  th {
    background-color: hsl(11, 61%, 70%);
  }

  td {
    background-color: wheat;
    padding: 1rem;
  }

  
  tr:nth-last-of-type(2n) {
    background-color: hsl(11, 61%, 46%);;
  }
 
  .row {
    display: flex;
    justify-content: center;
  }
  
  .column {
    flex: 0 0 20.00%; /* four equal-width columns */
    max-width: 25.00%;
    padding: 10px;
    box-sizing: border-box;
  }
  
  .hide{
    display: none;
  }
  
  .drop-targets{
    border: 1px solid;
  }
  
  .box{
    border: 1px solid;
  }
  
  .drag-over{
    border: dashed 3px red;
  }

a{
    color: red;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

.logo{
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
    text-align: left;
}
button.green{
    background-color: #2ecc71;
}

/*Course color-coding*/
.majorCourseList{
  color: red;
}

.genEdCourseList{
  color: blue;
}

.electivesCourseList{
  color: green;
}


    
  
  
  
