/* Variables */
:root {
    --wk-green: rgb(110, 187, 31);
    --wk-blue: #007ac3;
}
/* .wk-bg-green {background-color: rgb(110, 187, 31);}; */
/* .wk-bg-blue {background-color: #007ac3;}; */

html {
    font-family: "Calibri", sans-serif;
    font-size: 18px;
}

/* HEADER */
#master-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: var(--wk-green);
}
.header-logo {
    padding: 10px;
}

/* BODY */
body {
    margin-top: 60px;
    margin-bottom: 50px;
}
#main {
    margin: 0 20px 0 30px;
}
h1 {
    color: var(--wk-blue) !important;
    margin-top: 40px !important;
    margin-left: -30px !important;
    font-size: 1.5em !important;
}
h2 {
    color: var(--wk-blue) !important;
    margin-top: 40px;
    margin-left: -30px;
    font-size: 1.25em !important;
}
h3 {
    color: var(--wk-blue) !important;
    margin-top: 40px;
    margin-left: 0px;
    font-size: 1.0em !important;
}
.confluence-information-macro {
    margin: 20px;
    border-left: solid 5px var(--wk-blue);
    border-radius: 5px;
    padding: 5px;
    background-color: aliceblue;
}
.confluence-information-macro > .title {
    font-weight: bold;
}
.confluence-embedded-image {
    margin-left: 40px;
    margin-top: 10px;
}



/* FOOTER */
#id_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 50px;
    background-color: var(--wk-blue);
}
.footer-logo {
    padding: 10px;
}
.draft-notice {
    color: #fff;
    text-align: end;
    padding: 15px;
}