﻿body {
    font-family: Verdana;
    padding: 10px;
    background: #f1f1f1;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header/Blog Title */
.header {
    padding: 10px;
    text-align: center;
    background: transparent;
    background-image: url(/Images/grass.png);
    background-size: 100% 20vh;
    background-repeat: no-repeat;
    box-shadow: 0 4px 9px #4A4335, 0 4px 9px #4A4335;
}

    .header h1 {
        font-size: 50px;
        color: white;
    }

    .header p {
        font-size: 16px;
        color: white;
    }

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: transparent;
}

    /* Style the topnav links */
    .topnav a {
        float: left;
        display: block;
        color: black;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        /* Change color on hover */
        .topnav a:hover {
            background-color: #ddd;
            color: black;
        }

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
    float: left;
    width: 69%;
}

.spacer {
    display: block;
}

/* Right column */
.rightcolumn {
    float: right;
    width: 30%;
    background-color: transparent;
}

/* Fake image */
.fakeimg {
    width: 30%;
    height: auto;
    box-shadow: 0 3px 8px darkgray, 0 3px 8px darkgray;
}

/* Add a card effect for articles */
.card {
    background-color: transparent;
    padding: 20px;
    margin-top: 20px;
    text-shadow: 1px 1px 3px gray;
    box-shadow: 0 4px 9px darkgray, 0 4px 9px darkgray;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.myfooter {
    padding: 5px;
    text-align: center;
    background: #4A4335;
    margin-top: 10px;
    color: white;
    box-shadow: 0 2px 7px #4A4335, 0 2px 7px #4A4335;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn, .spacer {
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}

.btn-prime {
    border-color: transparent;
    height: 40px;
    background-color: #A99882;
    width: 130px;
    font-size: 23px;
    text-shadow: 1px 1px 1px black;
    box-shadow: 0 4px 7px black,0 4px 7px black;
    border-radius: 7px;
}

    .btn-prime:hover {
        background-color: #4A4335;
        color: white;
        text-shadow: 1px 1px 1px #D0C4B4;
    }

.text-login {
    background-color: #D0C4B4;
    height: 45px;
    padding: 11px;
    color: white;
    box-shadow: 0 2px 4px black;
}

.label-login {
    text-shadow: 1px 2px 4px black;
    color: #A99882;
    font-size: 42px;
    font-weight: bolder;
}

.home-links {
    color: #A99882;
    font-size: 14px;
    text-decoration: none;
    text-shadow: 1px 1px 2px black;
    font-weight: bold;
}

.control-label {
    color: black;
    font-size: 16px;
    font-weight: bolder;
}

.tab-primary {
    background-color: #D0C4B4;
    color: black;
    font-weight: bolder;
    box-shadow: 0 4px 7px black;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 42px;
    width: 120px;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    text-shadow: 1px 1px 1px black;
}

    .tab-primary:hover {
        background-color: #4A4335;
        color: white;
        text-shadow: 1px 1px 1px #D0C4B4;
    }

h1 {
    color: #4A4335;
    font-weight: bolder;
    text-shadow: 3px 2px 3px #A99882;
}

.menu-links {
    font-weight: bolder;
    color: #4A4335;
}

.container-columns {
    display: grid;
    column-gap: 3px;
    grid-template-columns: 65% 5% 30%;
    background-color: transparent;
    padding: 10px;
    vertical-align: top;
}

    .container-columns > div {
        background-color: transparent;
        padding: 5px;
        font-size: 14px;
        text-align: center;
        color: black;
        text-align:justify;
        vertical-align: top;
    }

.container-numbers {
    display: grid;
    column-gap: 3px;
    grid-template-columns: 50px 50px 50px 50px 110px;
    background-color: transparent;
    padding: 10px;
}

    .container-numbers > div {
        background-color: yellowgreen;
        border: 1px solid black;
        padding: 5px;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
    }

.container-duce {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 170px 110px;
    background-color: transparent;
    padding: 10px;
}

    .container-duce > div {
        background-color: lightgray;
        border-bottom: 2px solid silver;
        padding: 5px;
        font-size: 12px;
        color: black;
    }

.container-dblduce {
    display: grid;
    column-gap: 5px;
    grid-template-columns: 90px 90px;
    background-color: transparent;
    padding: 10px;
}

    .container-dblduce > div {
        background-color: #f1f1f1;
        border: 1px solid silver;
        padding: 5px;
        font-size: 12px;
    }

.container-rows {
    display: grid;
    row-gap: 1px;
    grid-template-rows: auto;
    background-color: transparent;
    padding: 2px;
}

    .container-rows > div {
        background-color: #f1f1f1;
        border: 1px solid black;
        padding: 5px;
        font-size: 16px;
        text-align: center;
    }
.form-control-right {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align:right;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}