/* Reset some default styles for consistency */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

.section-heading {
    font-weight: normal;
    font-size: 24px;
    color: #005013;
    margin-bottom: 15px;
    margin-left: 10px;
}

/* Apply some basic styling */
body {
    background-color: #f8f8f8;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif; /* Use Open Sans as the primary font */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Make sure the body takes up at least the full viewport height */
}

.removable-banner {
    background-color: #D0342C;
    padding: 10px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

a.close-link{
    color: #fff;
    text-decoration: none;
}



header {
    height: 109px;
    background: url('images/header.png') repeat-x; /* Replace with your image path */
    display: flex;
    align-items: center;
    padding: 0 20px 0 70px;
}

.logo img {
    width: 75px; /* Set your logo width */
    height: auto;
    margin-right: 20px;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #f8f8f8;
}

.menu a:hover{
    color: #ffa500;
}

main {
    font-size: 14px;
    flex: 1;
    color: #005013;
    display: flex;
    padding: 20px;
}

main a {
    text-decoration: none;
    color: #005013;
}

main a:hover {
    color: #ffa500;
}

.left-side, .right-side {
    flex: 1;
    --padding: 20px;
}

.left-side{
    flex: 0 0 800px; /* Set width to 800px */
    padding: 0 20px 0 50px;
}

.right-side {
    flex: 0 0 315px; /* Set width to 800px */
    padding: 48px 50px 0 20px;
}

.search-tree img{
    width: 315px;
    margin: 10px 0 0 0;
}

.search-head{
    margin: 0 0 10px 0;
    padding: 10px;
    text-align: left;
    border: none;
    background-color: #005013; /* Background color for the table header */
    color: #f8f8f8;
}

table {
    margin: 0 0 20px 0;
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 10px;
    text-align: left;
    border: none;
}

th:first-child,
td:first-child {
    padding-left: 20px; /* Add extra padding to the first th and td */
}

th {
    font-weight: normal;
    background-color: #005013; /* Background color for the table header */
    color: #f8f8f8;
}

tr:nth-child(2n) {
    background-color: #c8c8c8; /* Background color for even rows */
}

tr:nth-child(2n+1) {
    color: #005013;
}


footer {
    margin-top: auto;
    font-size: 10px;
    background-color: #005013; /* Background color for the footer */
    color: #f8f8f8;
    text-align: left;
    padding: 0 0 0 70px;
    line-height: 75px;
    height: 75px; /* Set footer height */
}

footer a {
    
    text-decoration: none;
    color: #f8f8f8;
}

footer a:hover {
    color: #ffa500;
}

footer span {
    margin: 0 0 0 20px;
}

form {
    max-width: 400px;
    margin: 0 0 10px 0;
   --margin: 0 auto;
  }

  /* Style for labels */
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  /* Style for input fields */
  input[type="number"] {
    width: 120px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  input[type="text"] {
    width: 120px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  select {
    width: 120px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  /* Style for input field container (Flexbox) */
  .input-container {
    display: flex;
  }

  /* Style for amount input (Flexbox item) */
  .amount {
    flex: 1;
    margin-right: 10px;
  }

  /* Style for price input (Flexbox item) */
  .price {
    flex: 1;
  }

  /* Submit button style */
  input[type="submit"], button {
    padding: 10px 15px;
    background-color: #fe9a2e;
    color: #21563e;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  input[type="submit"]:hover {
    background-color: #fe9a2e;
  }

.showButton{
    margin: 0 5px 0 5px;
}

.pageButton{
    margin: 0 0 0 5px;
}

  /* Hide all pages except the first page */
  .form-page {
      display: none;
    }
    
    /* Show the first page initially */
    #page1 {
      display: block;
    }

  #result-page4{
      margin: 10px 0 0 0;
  }
  
  .batch-container {
    display: flex;
  }

  .batch {
    margin-right: 10px; /* Adjust the margin as needed */
  }

#treeLocationContainer{
    width: 315px;
    margin: 0 0 0 50px;
    background-color: #f0f0f0;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;

}

#treeLocationContainer img{
    width: 315px;
}