.mtc-card {
    padding: 1.5rem;
    margin: 2rem 0rem;
}

body {
    /* background-image: linear-gradient(45deg, #e8e8e8 16.67%, #f0f0f0 16.67%, #f0f0f0 50%, #e8e8e8 50%, #e8e8e8 66.67%, #f0f0f0 66.67%, #f0f0f0 100%);
    background-size: 8.49px 8.49px; */
    background-color:white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#course-search {
    cursor: pointer;
}

pre {
    background-color: #ededed;
    border: thin solid #d7d7d7;
    border-radius: 0.5rem;
    padding: 1rem;
}

.t-banner{
    background-color: black;
    background-image: url('../img/banners/solo.jpg');
    background-size: cover;
    aspect-ratio: 8/1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.t-banner h1{

    background-color: #27252a;
    width: fit-content;

    margin: 0 auto;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
}
.t-banner h2{

    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 0.2rem;
    margin: 1rem auto 0;
}

.cert-body {
    aspect-ratio: 1.41/1;
    background-color: red;
    width: 50%;
}

.header-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background-color: rgb(33, 33, 33);
    color: whitesmoke;

}

.header-grid>div {
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 0;

}

.header-grid>div:not(:last-child) {
    border-right: 1px solid whitesmoke;

}

.sd-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background-color: rgb(205, 205, 205);

}

.sd-grid>div {
    background-color: whitesmoke;
    padding: 0.5rem;
}

.sd-grid>.sd-empty-cell {
    background-color: rgb(221, 221, 221);

}


.sd-event:nth-child(3n -2) {

    --theme-r: 184;
    --theme-g: 235;
    --theme-b: 239;


}

.sd-event:nth-child(3n -1) {
    --theme-r: 184;
    --theme-g: 211;
    --theme-b: 239;
}

.sd-event:nth-child(3n) {
    --theme-r: 130;
    --theme-g: 195;
    --theme-b: 236;
}

.sd-event {
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.7);
    border-color: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 1);
}





.sd-grid h3 {
    text-align: center;

}

.sd-event p {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.sd-event span {
    font-weight: 100;
    font-size: 1.2rem;
    text-align: right;
    display: block;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
    font-weight: 400;
}

.sd-event .btn {
    background-color: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.7);
    border-color: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 1);
    color: rgb(53, 53, 53);
}

.sd-event .list-group-item {
    padding: .5rem;
}


/*BS Custom*/

.btn-danger {
    color: #fff;
    background-color: #cb5555;
    border-color: #c52e2e;
}

.btn-success {
    color: #fff;
    background-color: #51ad5b;
    border-color: #4c9163;
}

.btn-primary {
    color: #fff;
    background-color: #4d8ff1;
    border-color: #4d84d5;
}

