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

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

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

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

/* To add space between div elements */
.div-with-margin {
  margin-top: 40px;
  margin-bottom: 30px;
}


/* To make font smaller and highlight notes in div */
.required-info {
  font-size: 9pt;
  font-style: italic;
}

.required-info1 {
  font-size: 11pt;
  font-style: italic;
}

h1 {
  text-align: center;
}

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

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

.lable-container {
  display: inline-block; 
  width: 65%; 
  text-align: left;
  margin-bottom: 12px;
}

.data-container {
	display: inline-block; 
	width: 25%; 
	text-align: left;
}

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

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

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

h2 {
  margin-top: 10px;
  text-align: left;
}

/* Table style */
table {
  border-collapse: collapse;
}

th {
  background-color: gray;
  font-weight: bold;
  font-size: 1.2em;
}

th:first-child {
  background-color: gray;
  font-weight: bold;
  font-size: 1.2em;
}

th, td {
  padding: 10px;
  border: 1px solid black;
}
/* end table style */




/* 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 */

/* For Printing */
@media print {
  .grid-container {
    display: flex;
    flex-wrap: wrap;
  }
}

/* To set the page size and margins for printing */
@media print {
  @page {
    size: letter; 
    margin-top: 2cm; 
    margin-bottom: 1.5cm; 
    margin-left: 2cm; 
    margin-right: 2cm; 
  }

/* 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 */
