body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1 {
  text-align: center;
}

form {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 0px;
  form
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header h1 {
  font-size: 24px;
  padding-top: 30px;
}

.form-header p {
  font-size: 14px;

}

form#expenseForm {
  margin-bottom: 100px;
}

h2 {
  margin-top: 10px;
}

.expenseInput {
  width: 100%;
  margin-bottom: 10px;
}

#grandTotal {
  font-weight: bold;
  text-align: left;
}

/* Three Column Code - Adjusts to fit screen size */

/* Default styles for the form */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* End Three Column Code */

.column {
  display: flex;
  flex-direction: column;
}

.section-container {
  margin-bottom: 10px;
}

.input-container {
  display: flex;
  flex-direction: column;
}

.input-container label {
  margin-bottom: 5px;
}

.input-container input {
  text-align: right;
}

.input-container input[type="text"] {
  width: 150px; /* Adjust the width value as needed */
}

.sectionTotal {
  font-weight: bold;
}


/* Expense Labels font */

label {
  font-family: Arial, sans-serif; /* Specify the font family */
  font-size: 14px; /* Specify the font size */
}


/* Header and Footer styles */

.header {
  background-color: #0a3041;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
}

.left-content {
  display: flex;
  align-items: center;
}

.back-button {
  padding: 5px 10px;
  background-color: white;
  color: black;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #94a7b2;
}

.center-content {
  flex-grow: 1;
  text-align: center;
}

.logo {
  /* display: block; */
  width: 314px;
  height: 50px;
  margin-right: 10px;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  background-color: #0a3041;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;

}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 12px;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* begin text hyperlink style for footer*/
.custom-link {
  color: #ffffff !important;
  text-decoration: underline;
}

.custom-link:hover {
  color: #C0964B !important;
}

.custom-link:visited {
  color: #C0964B;
}
/* end text hyperlink style for body */

/* Resizing of page based on screen size */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media print {
  .grid-container {
    display: flex;
    flex-wrap: wrap;
  }
}

@media print {
  @page {
    size: letter; /* Set the page size to letter */
    margin-top: 2cm; /* Set the top margin */
    margin-bottom: 1.5cm; /* Set the bottom margin */
    margin-left: 2cm; /* Set the left margin */
    margin-right: 2cm; /* Set the right margin */
  }


