:root{
    --rolsaGreen: #69B220;
    --rolsaYellow: #D9D216;
    --rolsaBlue: #264BBA;
    --headingFont: "ADLaM Display";
    --bodyFont: "Cleanvertising";
}

@font-face {
    font-family: "Cleanvertising";
    src: url(../fonts/CLEANVEL.TTF);
}

@font-face {
    font-family: "Cleanvertising";
    src: url(../fonts/CLEANVEB.TTF);
    font-weight: bold;
}

/* Tags */
body{
    margin: 0;
    padding: 0;
}

table{
    width: 100%;
}

th{
    font-family: var(--headingFont);
    padding-left:  20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

td{
    text-align: center;
    font-family: var(--bodyFont);
}

td a{
    padding-left: 2%;
    padding-right: 2%;
    text-decoration: none;
    color: black;
}

/* Classes */
.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: var(--rolsaGreen);
}

.navbarItems{
    font-family: var(--headingFont);
    font-size: larger;
    color: black;
    text-decoration: none;
}

.bodyBackground{
    background-color: var(--rolsaYellow);
    width: 80%;
    min-height: 500px;
    margin: 5% 10%;
    border-radius: 50px;
    border-color: black;
    border-width: 3px;
    border-style: ridge;
    display: flex;
    justify-content: center;
}

.heading{
    text-align: center;
    font-family: var(--headingFont);
}

.form{
    width: 45%;
}

.body{
    width: 75%;
}

.formSection, .bodySection{
    display: flex;
    justify-content: space-around;
    padding: 20px 0px;
}

.bodySection{
    justify-self: center;
    width: 60%;
}

.tableSection{
    width: 100% !important;
    justify-self: center;
}

.articleSection{
    padding: 20px 0px;
    text-align: center;
    font-family: var(--bodyFont);
}

.articleSection h1, .articleSection h2, .articleSection h3, .articleSection h4, .articleSection h5, .articleSection h6{
    font-family: var(--headingFont);
}

.formLabel, .inlineHeading{
    font-family: var(--headingFont);
    font-size: larger;
    display: flex;
    justify-content: right;
}

.formLabel{
    width: 200px;
}

.inlineHeading{
    width: 150px;
}

.profileData{
    font-family: var(--bodyFont);
    font-size: large;
    align-self: flex-end;
    width: 150px;
}

.formSection input, .formSection select{
    border-color: var(--rolsaBlue);
    border-radius: 5px;
    border-width: 2px;
    padding: 1px 2px;
    width: 200px;
    box-sizing: content-box;
    font-family: var(--bodyFont);
}

.formSection p, .bodySection p{
    text-align: center;
    font-size: larger;
    margin: 0;
}

.formButton, .articleCard{
    background-color: var(--rolsaBlue);
    font-family: var(--headingFont);
    font-size: larger;
    color: white;
    text-decoration: none;
    text-align: center;
    border-color: black;
    border-width: 2px;
    border-radius: 15px;
}

.formButton{
    padding: 10px 10px;
    cursor: pointer;
    width: 200px;
    border-style: ridge;
}

.articleCard{
    padding: 10px 2px;
    width: 250px;
    height: 250px;
}

.articleRow{
    display: flex;
    justify-content: space-around;
    padding-bottom: 30px;
}

.articleRow a{
    text-decoration: none;
}

.trumbowyg-editor-box{
    background-color: #ecf0f1;
    text-align: center;
}

.deleteUser, .deleteBooking, .deleteArticle, .deleteCategory{
    cursor: pointer;
}

/* IDs */
#navbarRight, #navbarLeft{
    display: flex;
    height: inherit;
    align-items: center;
}

#navbarRight{
    justify-content: right;
    padding-right: 1%;
    width: 65%;
}

#navbarRight .navbarItems{
    padding-left: 3%;
}

#navbarLeft{
    justify-content: left;
    padding-left: 1%;
    width: 35%;
}

#navbarLeft .navbarItems{
    padding-left: 4%;
    text-decoration: none;
}

#navbarLeft a{
    display: flex;
    height: inherit;
    align-items: center;
    width: 50%;
    text-decoration: none;
}

#navbarCenter{
    margin-left: 20%;
}

#navbarCenter a {
    font-size: xx-large;
}

#logo{
    width: 34px;
    height: 34px;
    background-color: white;
}

#companyName{
    font-size: xx-large;
}

#message{
    text-align: center;
    font-family: var(--bodyFont);
}

#emissionsOutputSection, #costOutputSection{
    padding-top: 50px;
    font-size: 20px;
}

#totalEmissionsOutput, #totalCostOutput{
    font-family: var(--headingFont);
    width: 200px;
    align-self: flex-end;
}

