body {
    font-family: Arial, Helvetica, sans-serif
}

.demo {
    flex-grow: 1;
    padding:1em 1em 1em 3em; 
    flex-direction: row;
    flex-wrap: wrap;
    }

.flexbox {
        display: flex;
        flex-direction: row;
       flex-wrap: wrap;
    }

/* Change background color of tabs on hover */
.tabs a:hover {
  background-color:grey;
  box-sizing: border-box;
  margin: 0;
 
}

.container {  
    max-width: 620px; 
    min-width: 220px;
    margin: 10px ;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    color: rgb(155, 37, 37);
}

/* Style the tabs */
.tabs {
    display:flex;
    flex-wrap: wrap;
    overflow: hidden;
    margin-left: 0px;
    margin-bottom: -5px; /* hide bottom border */
    
}

.tabs ul {
    list-style-type: none;
    margin-left: 2px;
   
}

.tabs a{
    float: left;
    cursor: pointer;
    padding: 10px 0.5rem;
    transition: background-color 0.2s;
    border: 1px solid rgb(31, 19, 19);
    border-right: none;
    background-color: #dac1c1;
    border-radius: 5px;
}

/* Styling for active tab */
.tabs a.active {
    background-color: rgb(240, 73, 73);
    color: #484848;
    border-bottom: 2px solid #fff;
    cursor: default;
}

/* Style the tab content */
.tabcontent2 {
   
    padding: 0px;
    border: 1px solid #ccc;
    border-radius: 0px;
  box-shadow: 3px 3px 6px #e1e1e1
}

.green {background-image: linear-gradient(to right,rgb(5, 202, 5,0.5),rgb(5, 202, 5,1))}

.yellow {
    background-image: linear-gradient(to right, rgb(255,255,0,0.4),rgb(255,255,0,1));
    }

.blue {background-image: linear-gradient(to right,rgb(100, 159, 214,0.5),rgb(100, 159, 214,1))}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
    grid-gap: 0.5rem;
  }