@font-face {
    font-family: "Big Caslon";
    src: url("../miscellaneous/fonts/BIG_CASLON/BigCaslon.ttf")
        format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../miscellaneous/fonts/PROXIMA_NOVA/ProximaNova-Light.otf")
        format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../miscellaneous/fonts/PROXIMA_NOVA/ProximaNova-Regular.otf")
        format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../miscellaneous/fonts/PROXIMA_NOVA/ProximaNova-Semibold.otf")
        format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../miscellaneous/fonts/PROXIMA_NOVA/ProximaNova-Bold.otf")
        format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../miscellaneous/fonts/PROXIMA_NOVA/ProximaNova-Extrabold.otf")
        format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../miscellaneous/fonts/PROXIMA_NOVA/ProximaNova-Black.otf")
        format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --header-height: 56px;
    --footer-height: 40px;
    --accent-color: #dcb464;
}

.accent-card {
    border: 1px solid var(--accent-color) !important;
}

.table thead.table-light {
    background-color: #f9f4e7;
}

.table thead.table-light th {
    border-bottom: 2px solid var(--accent-color);
}

/* other global stuff here */
html,
body {
    height: 100%;
    background-color: #f7f7f5;
    color: #0f0f0f;
}

/* Wrapper under header/footer */
.layout-wrapper {
    padding-top: 56px; /* header height */
    padding-bottom: 40px; /* footer height */
    max-height: 95vh;
}

/* Central area can scroll now */
.main-content {
    min-height: calc(100vh - 56px - 40px);
    /* no overflow hidden here */
}
