body {
    background-color: #3d444f;
}

.overview {
    display: grid;
    background-color: #b8c1ec;
    grid-template-columns: 7% 73% 20%;
    grid-template-rows: auto auto;
    margin: 5px;
    border: 5px solid red;
    grid-template-areas: 
      "image titles butt"
      "image failnotes belowbutt";
}

.gridleft {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px; 
    
}

.gridmiddle1 {
    grid-column: 2;
    grid-row: 1;
}

.gridmiddle2 {
    grid-area: failnotes;
    font-weight: bold;
    margin: 10px;
    object-fit: fill;
}

.gridright {
    grid-area: butt;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px; 
    color: #000000;
    background-color: #572c9bb9;
}


.rounded {
    border-radius: 25px;
}

.coverimage {
    grid-area: image;
    width: 100%;
    max-width: 35px;
    height: 100%;
    object-fit: cover;
    border-right: #dce531 solid;
    border-width: 5px;
}

.textthingy {
    text-align: center;
    margin: auto;
}

.passed {
    background-color: lightgreen !important;
    color: rgb(0, 0, 0);
    border-color: rgb(44, 175, 4);
    
}

.failed {
    background-color: lightpink !important;
    color: rgb(0, 0, 0);
    border-color: rgb(255, 92, 179);
}

.dropdown {
    display: none;
    margin: 10px;
    text-align: center;
    font-weight: bolder;
}

.hidden {
    display: none;
}

.mainbox {
    margin: auto;
    padding: 5px;
    border-radius: 10px;
}

.activity {
    display: grid;
    width: 100%;
    background-color: #FF9B8C;
    grid-template-columns: 40% 20% 40%;
    border: 3px solid purple;
    border-radius: 20px;
}

.actstart {
    grid-column: 1;
}

.actmid {
    grid-column: 2;
}

.actend {
    grid-column: 3;
}

.after {
    background-color: #30ab76;
    border-color: blue;
}

.progress {
    text-align: right;
}

a:link {
    color: rgb(49, 21, 231);
}

a:visited {
    color: rgb(49, 21, 231);
}

.settings {
    display:inline-block;
}

.the-search {
    display: grid;
    grid-template-rows: auto auto auto;
    width: 90%;
    grid-template-areas: 
        "title"
        "input"
        "button";
    margin: auto;
    
}

.search {
    padding: 0px;
    border-left: 0px none;
    text-align-last: center;
    grid-area: input;
    font-size: medium;
    border-radius: 5px 5px 0px 0px;
}

.search-button {
    padding: 0px;
    margin: 0px;
    background: #572c9bb9;
    border: 2px outset aliceblue;
    color: aliceblue;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    grid-area: button;
    font-size: medium;
    border-radius: 0px 0px 5px 5px;
}
.title {
    background: #310a43;
    margin-bottom: 5px;
    padding: 5px;
    border-top: 1px solid aliceblue;
    border-bottom: 1px solid aliceblue;
    border-radius: 10px;
    color: aliceblue;
    font-weight: bold;
    text-align: center;
    font-size: larger;
    margin: 5px;
}

.separated {
    background-color: #6c3879;
    padding: 5px;
    border: 3px solid #310a43;
    border-radius: 15px;
    margin: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

#results {
    min-height: 50px;
}