/* This file contains solely definitions for the functionality of infoboxes on the website */
.infobox {
    border: .05rem solid var(--md-primary-fg-color);
    border-radius: .1rem;
    margin: 0 0 1em 1em;
    border-collapse: collapse;
    font-size: 0.9em;
    width: 300px;
    float: right;
    clear: right;
    background: var(--md-primary-fg-color);
}

@media screen and (max-width: 600px) {
    .infobox {
        width: 100%;
        float: none;
        margin: 0 auto;
    }
}

.infobox .infobox-top {
    text-align: center;
    margin: 0.4em;
    font-size: 1.6em;
}

.infobox-top p {
    margin: 0;
}

.infobox .infobox-subtitle {
    text-align: center;
    margin: 0.4em;
    font-size: 1.125em;
}

.infobox-subtitle p {
    margin: 0;
}

.infobox img {
    max-width: 100%;
    width: 100%;
    background-color: var(--md-default-bg-color);
    height: auto;
    display: block;
    margin: 0 auto;
}

.infobox p {
    margin: 0;
}

.infobox .md-typeset__scrollwrap {
    margin: 0;
}

.infobox table:not([class]) {
    border: none;
    display: table;
    border-radius: 0;
}

.infobox .md-typeset__table {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    display: block;
}

.infobox thead {
    visibility: hidden;
    display: none;
    width: 100%;
    height: 0;
    margin: 0;
    border: 0 none;
}

.infobox tr {
    width: 100%;
}

.infobox table:not([class]) td {
    border-top-color: var(--md-primary-fg-color);
}