﻿* {
    box-sizing: border-box;
}

html {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    height: 100%;
}

body {
    margin: 0;
    background-color: #003c71;
    height: 100%;
    font-size: 20px;
}

header {
    background-color: #ffffff;
    border-top: 5px solid #003c71;
    border-bottom: 5px solid #003c71;
    padding: 8px 8px 8px 8px;
}

label {
    display: block;
}

input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    margin-bottom: 8px;
    width: 100%;
}

    input:focus {
        -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    }

    input[type=text] {
        font-weight: bold;
    }

    button.action {
        background-color: #6ca637;
        border: 3px solid white;
        border-radius: 4px;
        color: white;
        padding: 6px 12px;
        font-size: 150%;

        width: 100%
    }

    button {
        margin-bottom: 10px;
        margin-top: 10px;
    }

p.instructions {
    font-weight: bold;
    margin: 10px 0px 10px 0px;
}

div.form-instruction {
    background-color: #8cc15c;
    border: 3px solid #003c71;
    border-radius: 4px;
    color: black;
    padding: 6px 12px;
    font-size: 80%;
    width: 100%;
    margin-top: 10px;
}
h1 {
    margin: 0px 0px 0px 0px;
}

div.container {
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 750px;
    padding: 8px 24px 8px 16px;
    background-color: #808080;
    background-image: url('shutterstock_713581222-Home-scaled.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    color: white;
}

/* Font Sizes for small screens */
label {
    font-size: 150%;
}

input {
    font-size: 150%;
}

/* For Mobile Screens */
table {
    background-color: white;
    color: #003c71;
    width: 100%;
    font-size: 70%;
    margin: 0px 0px 20px 0px;
}



table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px 5px 5px 5px;
}

th {
    background-color: #ccc;
}

td {
}

.durationColumn {
    text-align: left;
    min-width: 100px;
}

.costColumn {
    text-align: right;
    width: 80px;
    max-width: 80px;
    min-width: 80px;
}

.butColumn {
    text-align: center;
    width: 60px;
}

.dur1 {
    border-bottom: none;
}

.dur2 {
    border-top: none;
}

.VRMDisplay {
    font-weight: normal;
    text-transform: uppercase;
}

.errorBox {
    background-color: pink;
    border: red 2px solid;
    color: black;
    padding: 10px;
    border-radius: 5px;
}

/* For Larger screens */
@media only screen and (min-width:380px) {
    header {
        border-top: 30px solid #003c71;
    }

    div.form-layout {
        padding-left: 50px;
    }

    label {
        font-size: 100%;
    }

    input {
        font-size: 100%;
        width: auto;
    }

    button.action {
        width: auto;
        font-size: 100%;
    }

    h1 {
        margin: 26px 0px 26px auto;
    }

    p.instructions {
        margin: 20px 0px 20px 0px;
    }

    table {
        background-color: white;
        color: #003c71;
        width: 100%;
        font-size: 70%;
        margin: 0px 0px 20px 0px;
    }



    table, th, td {
        border: 1px solid black;
        border-collapse: collapse;
        padding: 5px 5px 5px 5px;
    }

    th {
        background-color: #ccc;
    }
    td {
    }
    .durationColumn {
        text-align: left;
        min-width: 100px;
    }
    .costColumn {
        text-align: right;
        width: 80px;
    }
    .butColumn {
        text-align: center;
        width: 80px;
    }
    .dur1 {
        border-bottom: none;
    }
    .dur2 {
        border-top: none;
    }
}





