@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Playfair+Display&display=swap');

h1,h2,h3,h4,h5 {
    font-family: 'Playfair Display';
}

.body-wrapper {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    max-width: min(550px, 100%) !important;
}

.bg-gradient.mygevity-green {
    background: linear-gradient(45deg,
            #809E1B 0%,
            #008000 5%,
            #649b24 95%,
            #90ac40 100%);
}

.bg-gradient.mygevity-green:hover {
    background: #008000;
}

.left {
    text-align: left;
}

.table thead {
    background-color: #008000;
    color: #FFF;
    font-weight: 300;
}

.table td, .table th {
    border: 1px solid #EEE;
    padding-left: 0.25rem;
}

/** Select Options **/
select.select {
    appearance: none;
    background-color: #FFF;
    border: none;
    font-size: 1rem;
    line-height: 1.35rem;
    margin: 2px 0px;
    outline: 2px solid black;
    padding: 0.25rem 1rem;
    width: 100%;
}

select.select:hover {
    background-color: #E2E2E2;
    cursor: pointer;
}

select.select:focus-visible {
    border: none;
    outline: none;
}

select.select option {
    background-color: #FFF;
    border-radius: 1rem;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::before {
    content: "\2304";
    height: 0;
    line-height: 0;
    position: absolute;
    right: 0.5rem;
    top: calc(50% - 0.25rem);
    pointer-events: none;
    z-index: 1;
    width: 1rem;
}

/** Pretty Print for JSON **/
pre {
    outline: 1px solid #ccc;
    padding: 5px;
    margin: 5px;
}

.string {
    color: #93bc75;
}

.number {
    color: #c69263;
}

.boolean {
    color: #c69263;
}

.null {
    color: magenta;
}

.key {
    color: #e06c75;
}