/* This file contains CSS classes for commonly used styles */

/* Answer explanation text box styling */
.Explanation-Text-Box {
    background-color: rgb(111, 143, 175, 0.2);
    border-radius: 10px;
}

/* Answer explanation text styling */
.Explanation-Text-Align {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 2px;
    margin-bottom: 2px;
}

/* Overview header box styling for each subject */
.Biology-Overview-Header-Box {
    background-color: rgba(23, 147, 99, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px;
}

.Chemistry-Overview-Header-Box {
    background-color: rgba(255, 95, 31, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px;
}

.Physics-Overview-Header-Box {
    background-color: rgba(128, 0, 255, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px;
}

.Algebra-Overview-Header-Box {
    background-color: rgba(255, 165, 0, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px; 
}

.Geometry-Overview-Header-Box {
    background-color: rgba(0, 71, 171, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px;
}

.Statistics-Overview-Header-Box {
    background-color: rgba(112, 41, 99, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px;
}

.Precalculus-Overview-Header-Box {
    background-color: rgba(255, 0, 0, 0.7);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2.37em;
    border-radius: 10px 10px 0px 0px;
}

/* Overview text box styling for each subject */
.Biology-Overview-Text-Box {
    background-color: rgba(23, 147, 99, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

.Chemistry-Overview-Text-Box {
    background-color: rgba(255, 95, 31, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

.Physics-Overview-Text-Box {
    background-color: rgba(128, 0, 255, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

.Algebra-Overview-Text-Box {
    background-color: rgba(255, 165, 0, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

.Geometry-Overview-Text-Box {
    background-color: rgba(0, 71, 171, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

.Statistics-Overview-Text-Box {
    background-color: rgba(112, 41, 99, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

.Precalculus-Overview-Text-Box {
    background-color: rgba(255, 0, 0, 0.3);
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    float: top;
    border-radius: 0px 0px 10px 10px;
}

/* Overview header text styling */
.Overview-Header-Text {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 0.3em;
    padding-bottom: 0em;
    color: rgb(0, 0, 0);
    font-weight: bold;
    display: block;
    font-size: 1.17em;
}

/* Overview text styling */
.Overview-Text {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 2px;
    margin-bottom: 2px;
}

/* Overview boxes aligning */
.Overview-Container {
    display: flex;
    flex-direction: column;
  }
