/* 
    QuickQR Styles

    Author: Stephen Elliot
    Date: Summer 2022

    Decription: This is the CSS styling for all pages
    of the QuickQR application. It was generating by copying
    common properties from the previous CSS pages
*/

/* CSS styling for HTML elements */
a, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

body {
    background-color: rgb(54, 57, 58);
}

h1, p, div, td, span {
    text-align: center;
    background-color:rgb(32, 42, 68);
}

h2, p, td, th, span {
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 2px;
    padding-right: 2px;
}

input {
    border-radius:10px;
    text-align: center;
}

table {
    border-collapse:separate;
    border:solid rgb(161, 143, 240) 1px;
    border-radius:10px;
}

th:first-of-type {
    border-top-left-radius: 10px;
  }
th:last-of-type {
border-top-right-radius: 10px;
}
tr:last-of-type td:first-of-type {
border-bottom-left-radius: 10px;
}
tr:last-of-type td:last-of-type {
border-bottom-right-radius: 10px;
}

/* CSS styling for top menu and logo */
.horizontal-flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
#backArrow, #exportButton, #guideIcon {
    width: 35px;
}

#logo {
    width: 40%;
}

/* CSS styling for main div */
.vertical-flex-container {
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(32, 42, 68);
}

#mainDiv {
    height: 400px
}

#content{
    max-width: 300px;
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    align-items: center;
}

#calInput {
    text-align: center;
}

/* CSS styling for all icons on page */
#settingsIcon, #homeIcon, #qrCodeIcon, #guideIcon, #exportButton, #qrIcon {
    width: 35px;
}

/* CSS styling for bottom navigation menu */
#bottomMenu {
    text-align: center;
    background-color: lightgray;
    border-radius: 25px;
    height: 75px;
    /*position: absolute;*/
    /*bottom: 25px;*/
    width: 100%;
}

#bottomMenuDiv {
    padding: 40px;
}
