/* put your own styles to customize and override the theme */

body {
    font-family: "Inter", sans-serif;
}
.camcad-loader {
    position: fixed;
    z-index: 999;
    height:100%;
    background-color: rgba(35, 35, 50, .25);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.camcad-spinner {
    top: 50%;
    left: 50%;
    display: inline-block;
    position: absolute;
}

.navbarResponsive {
    position: fixed;
    width:100%;
    top:0;
    background: #f3f3f3e6;
    color: #222230;
    z-index: 200;
}

    .navbarResponsive a:hover {
        color: #222230;
        text-decoration: underline;
    }

@media (prefers-color-scheme: dark) {
    .navbarResponsive {
        background: #222230e6;
        color: #808080;
    }

        .navbarResponsive a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
}
.btnPrimaryGradient, .btnSecondaryGradient {
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
}
thead {
    background-color: #e6e5e5;
    border-bottom: 2px solid white;
}

.btnPrimaryGradient {
    background: linear-gradient(180deg, #1b64c3, #305b9f);
    color: white;
}
    .btnPrimaryGradient:hover {
        background: linear-gradient(180deg, #359df3, #305b9f);
        color: white;
        text-decoration: underline;
    }

.btnSecondaryGradient {
    background: linear-gradient(180deg, #f7f7f7, #e0e0e0);
    color: #00468b;
}
    .btnSecondaryGradient:hover {
        background: linear-gradient(180deg, white, #e0e0e0);
        text-decoration: underline;
        color: #00408b;
    }
a:hover {
    cursor: pointer;
}