/* Page Layout */
body {
    background-image: url("/Images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
   /* height: 100vh; 
    width: 100vw; */  
    margin: 0;
    padding: 0;
    background-color: black;
    margin: 0;
    padding: 0;
}

.background_img {
    background-image: url("/Images/under_construction.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh; 
    width: 100vw;  
    margin: 0;
    padding: 0;
}

/* Image Sizing*/
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Headings Fonts & Styling */
h1 {
    text-align: center;
    font-weight: bolder;
    color: #8d672b;
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
}

h2 {
    text-align: center;
    font-weight: bolder;
    color: #D4A737;
    font-family: 'Times New Roman', Times, serif;
    font-size: 35px;
}

h3 {
    text-align: center;
    font-weight: bold;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
}

h4 {
    text-align: center;
    font-weight: bold;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
}

h5 {
    text-align: center;
    font-weight: bold;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}

.main_content {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

/* Entry Form Styling */
label {
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}

.pricing-list {
    list-style-position: inside;
    padding-left: 0;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: white;
}

.submit_btn {
    text-align: center;
    margin-top: 15px;
    font-family: 'Times New Roman', Times, serif;
}

/* Side Navigation Bar */
.sidebar {
    height: auto;
    width: 120px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #000930;
    overflow-x: hidden;
    padding-top: 20px;
}

.sidebar a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 17px;
    color: #12396e;
    display: block;
}

.sidebar a:hover {
    background-color: #726563;
    color: black;
}

/* Table Layout */
table {
    table-layout: fixed;
    margin: auto;
    border-collapse: collapse;
}
th,
td {
    padding: 10px;
    text-align: left;
    border: 1px solid #444;
}

tr {
    background-color: #646464;
}

th {
    background-color: #202020;
    color: #fff;
    text-align: center;
}