
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*background: #ecf3fd;*/
    background:#0d0d0d;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.destructive-button {
    color: red !important;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.form-container {
    border-radius: 18px;
    background: #f7f7f9;
    padding: 14px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.form-container-title {
    color:#1f438f;
    font-size:1.7em;
    font-weight: bold;
}


.top-seperator {
    height: 1px;
    width: 100%;
    background: #1f438f;
}

.input-group.error {
    border-color: red;
}

.input-group {
    background: white;
    border: 1px solid #eeeeee;
    padding: 7px;
    position: relative;
    height: 55px;
    margin-top: 14px;
}

.input-group .form-label {
    font-size: 0.7rem;
    position: absolute;
    top: 7px;
    left: 7px;
}

 .input-group .form-control {
    background: none;
    border: none;
    padding-top: 14px;
    border-radius: 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #1f438f;
}

.input-group select {
    border:1px solid black;
    border-radius: 7px;;
}

@font-face {
    src: url("/fonts/Montserrat-VariableFont_wght.ttf");
    font-family: "Montserrat";
}

.report-title {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.6em;
    font-weight: normal;
    background: linear-gradient(45deg, #0581eb 0%, #891790 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.report-section-title {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    color: #24468E;
}

.report-card {
    border-radius: 6px;
    padding: 18px;
    display: inline-block;
    min-width: 15%;
    text-align: left;
    background: white;
    color: black;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    width: 100%;
    max-height: 650px;
    overflow-y: auto;
    break-inside: avoid;
}

.record-chart-container {
    height: 420px;
    width: 100%;
}

.report-stat-table tr.break td {
    height:30px;
}

.report-table, .report-stat-table {
    width: 100%;
    margin-top: 15px;
}

    .report-table thead td, .report-stat-table thead td {
        font-size: 0.8em;
        font-weight: bold;
    }

    .report-table tbody td {
        font-size: 2.0em;
        font-weight: bold;
        background: linear-gradient(45deg, #0581eb 0%, #891790 100%);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .report-stat-table tbody td.stat-name {
        font-weight: bold;
        background: linear-gradient(45deg, #0581eb 0%, #891790 100%);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@media (prefers-color-scheme: dark) {
    .report-card {
        background: #141414;
        color: white;
    }

    table {
        color: white;
    }
}


.fw-button {
    background-color: #0093E9;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    border:none;

}

.fw-button-danger {
    background-color: #bd17ac;
    background-image: linear-gradient(160deg, #bd17ac 0%, #e6478c 100%);
        border:none;
}

.fw-modal {
    position:absolute;
    top:10rem;
}

.fw-modal {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color: rgba(0, 0, 0, 0.5); /* red color with 50% opacity */
    z-index: 99;
}

.fw-modal.show {
    display:block;
    height: 100vh;
    overflow-y: scroll;
    margin-bottom:20px;
}

.inline-form-fields {
    display:flex;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
}