﻿/* Mobile First */


body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #007bff;
    border-bottom: 0.2rem solid #0056b3;
}

.navbar-brand img {
    width: 40px;
    height: auto;
}

.navbar-nav .nav-link {
    font-size: 16px;
}

.navbar-nav .nav-link.active {
    color: #ffcc00;
    font-weight: bold;
}

a {
    color: #007bff;
    text-decoration: none;
}

#contentMain {
    margin: 0 auto;
    margin-top: 5rem;
    max-width: 75%;
    width: 75%;
    padding-top: 2rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



#coffeeTable {
    width: 75%;
    border: 0.2rem solid #dee2e6;
}

#teaTable {
    width: 75%;
    border: 0.2rem solid #dee2e6;
}

#pastryTable {
    width: 75%;
    border: 0.2rem solid #dee2e6;
}

#orderTable {
    width: 75%;
    border: 0.2rem solid #dee2e6;
}

#infoSection {
    width: 75%;
    align-items: center;
    text-align: center;
    align-content: center;
    display: flex;
    margin: 0 auto;
    border: 0.2rem solid #dee2e6;
}

#outputSection {
    width: 75%;
    align-items: center;
    text-align: center;
    border: 0.2rem solid #dee2e6;
}


#txtName{
    width: 100%;
}

#lblOrderedProducts{
    font-weight:bold;
}

input[type="checkbox"] {
    transform: scale(2);
}

input[type="text"] {
    border-width: 0.2rem;
    border-color: lightgrey;
}

input[type="number"] {
    border-width: 0.2rem;
    border-color: lightgrey;
}

select {
    border-width: 0.2rem;
    border-color: lightgrey;
}

table {
    width: 100%;
    box-sizing: border-box;
    margin-top:1rem;
}

table th, table td {
    text-align: center; 
    vertical-align: middle; 
}

table select,
table input[type="text"],
table input[type="checkbox"],
table input[type="radio"],
table label,
table span{
    display: inline;
    vertical-align: middle; 
}

#lblCoffeeProducts{
    font-weight: bold;
}

#lblTeaProducts{
    font-weight: bold;
}

#lblPastryProducts{
    font-weight: bold;
}

#lblName {
    font-weight: bold;

}

#lblPhoneNumber {
    font-weight: bold;
}

#lblMainError{
    font-weight: bold;
}

#lblAccountMemberStatus {
    font-weight: bold;
}

#lblMemberAccount {
    font-weight: bold;
}

#lblDeliveryType {
    font-weight: bold;
}

#buttonArea{
    font-weight: bold;
    margin-top: 1rem;
}

#imgMemberProfilePicture {
    width: 20%;
    height: 20%;
    margin-top: 0.1rem;
    border-radius: 20%;
    border-style: solid;
    border-width: 0.4rem;
    border-color: lightgrey;
}

#txtName {
    width: 25%;
}

#txtPhoneNumber {
    width: 25%;
}

#txtMemberAccount {
    width: 25%;
}

#lblOrderName {
    font-weight: bold;
    align-items:center;
}

#lblOrderPhone {
    font-weight: bold;
}
#lblOrderAccount {
    font-weight: bold;
}
#lblOrderType {
    font-weight: bold;
}

#lblOrderHeading{
    font-weight: bold;
}


#footerBar {
    border-top: 0.2rem solid #dee2e6;
    background-color: #007bff;
    color: #fff;
    padding: 1rem 0;
}

footer p {
    font-size: 1rem;
    text-align: center;
}



/* Desktop View */
@media only screen and (min-width: 35rem) {

    #contentMain {
        max-width: 95%;
        width: 95%;
    }
}
