/* Custom css styles for quarto pages. */

/* Fira Mono by Carrois Apostrophe used under license https://openfontlicense.org/open-font-license-official-text/ */
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');

/* match navbar style to mkdocs theme */
.navbar {
    height: 48px;
    background-color: rgb(64, 81, 181);
    box-shadow: 0 0 .2rem #0000001a, 0 .2rem .4rem #0003;
}
@media screen and (min-width: 100em) {
    .navbar {
        height: 57.6px;
    }
}

/* fix display of out.table.chart boxes */
.cell-ouptut pre,
.cell-output code {
    font-family: "Fira Mono", monospace !important;
}

.chip {
    margin: 0;
    padding: 2px 4px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85em;
    background-color: lightgray;
    color: black;
}

.chip.blue {
    background-color: #1E88E5;
    color: white;
}

.chip.amber {
    background-color: #E1B300;
    color: black;
}

.button {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    background: #4051b5;
    color: white;
    font-weight: bold;
    cursor: pointer;

    &:hover {
        background: #313fa1;
    }
    &:active {
        background: #4354aa;
    }
}
