    body {
        font-family: 'IM Fell English', Helvetica, serif;
        margin-left: 7%;
        margin-right: 7%;
        margin-top: 0%;
        margin-bottom: 0%;
        font-size: 18px;
        text-align: left;
    }

    .form-label {
      color: #8B0000;
  }

    h1, h3, h3, h4, h5, h6 {
        color: #8B0000; 
    }
    .input-text {
    font-size: 24px;
    color: #8B0000 ;
    padding: 7px;
    text-align: center;
    }

    .response-text {
    font-size: 24px;
    margin-top: 3%;
    color: #8B0000 ;
    padding: 7px;
    text-align: center;
    }

    .content-table {
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 0.9em;
        min-width: 400px;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
      }

    .table-bordered {
      text-align: left;
    }

    .edit-button {
      background-color: #004038; /* Green */
      border: none;
      color: white;
      padding: 3px 8px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 10px;
      margin: 4px 2px;
      margin-right: 4px; 
      cursor: pointer;
      transition-duration: 0.4s;
      border-radius: 12px; /* Add this line */
  }

  .soldier-info {
    margin-right: 15px; /* Adjust as needed */
}
  
  .edit-button:hover {
      background-color: #45a049;
  }


      #results {
        margin-left: 20px;
        margin-right: 20px;
        width: 95%;  /* adjust this value as needed */
    }

    .search-results {
      display: flex;
      justify-content: space-evenly;
      align-items: flex-start;
      height: 100vh; /* Adjust as needed */
  }
    
    .soldier-details {
      text-align: left;
  }

  .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2%;
    margin: 2px auto;
}

.name-column {
  width: 15%; /* Adjust this value as needed */
}
.tasks-column {
  width: 85%; /* Adjust this value as needed */
}

      .search-input {
          margin-top: 10px; /* Adjust as needed */
          padding-bottom: 4px; 
      }


      .content-table thead tr {
        background-color: #8B0000;
        color: #ffffff;
        text-align: left;
        font-weight: bold;
        font-size: 20px;
        
      }
      
      .content-table th, 
      .content-table td {
        padding: 4px;
      }
      
      .content-table tbody tr {
        border-bottom: 1px solid #dddddd;
      }
      
      .content-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
      }
      
      .content-table tbody tr:last-of-type {
        border-bottom: 2px solid #8b0000;
      }
      
      .content-table tbody tr.active-row {
        font-weight: bold;
        color: #8B0000;
      }

      .glossy-button {
          font-family: 'Helvetica', sans-serif;
          border: none;
          color: white;
          padding: 3px 3px;
          text-align: center;
          text-decoration: none;
          display: inline-block;
          font-size: 8px;
          margin: 4px 2px;
          cursor: pointer;
          border-radius: 5px;
          box-shadow: 0 5px 5px rgba(0,0,0,0.2);
          position: relative;
          overflow: hidden;
      }

      .small-font {
      font-size: 6.2em;
      }
      
      .glossy-button:after {
          content: "";
          display: block;
          position: absolute;
          width: 100%;
          height: 50%;
          left: 0;
          top: 0;
          z-index: 1;
          transform: skewX(-45deg) translateX(-100%);
          transition: all 0.7s ease-in-out;
      }
      
      .glossy-button:hover:after {
          transform: skewX(-45deg) translateX(100%);
      }

      .delete-button {
          background: linear-gradient(to bottom, #ff0000, #d64242) !important;
          color: white !important;
      }

      .delete-button:hover {
          background: linear-gradient(to bottom, #cc0000, #990000) !important;
      }


    .add-button {
      background-color: #004038; /* Green */
      border: none;
      color: white;
      padding: 3px 8px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 12px;
      margin: 4px 2px;
      margin-right: 4px; 
      cursor: pointer;
      transition-duration: 0.4s;
      border-radius: 4px; /* Add this line */
  }

/* Pagination Styles */
.pagination {
    text-align: center;
    margin: 20px auto;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination-links {
    display: inline-block;
}

.pagination-links a,
.pagination-links span {
    padding: 8px 16px;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.page-arrow {
    font-weight: 700;
    color: #666;
}

.page-number:hover,
.page-arrow:hover {
    background-color: #f0f0f0;
    border-radius: 4px;
}

.current-page {
    background-color: #007bff;
    color: white !important;
    border-radius: 4px;
    font-weight: 700;
}

.ellipsis {
    color: #666;
    font-weight: 600;
}

.wide-input {
    width: 500px !important;  /* Same width as cemetery form */
    max-width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}

.bg-light-blue {
  background-color: #e7f1ff !important;
}

/* Optional: Style the accordion header differently */
.bg-light-blue .accordion-button {
  background-color: #cce3ff;
}

/* Optional: Style the accordion header when not collapsed */
.bg-light-blue .accordion-button:not(.collapsed) {
  background-color: #b8daff;
}

/* Navigation Styles */
#navBlock {
    color: #8B0000;
    display: flex;
    justify-content: center;
}

#navBlock a {
    color: #8B0000;
}

#navBlock .subnav a {
    color: #8B0000;
}

#navBlock.hidden {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Navigation Styles */
.folder-collection {
    position: relative;
}

.subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #8B0000;
    border-radius: 4px;
    padding: 8px;
    min-width: 150px;
}

.folder-collection:hover .subnav {
    display: block;
}

.subnav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subnav a {
    white-space: nowrap;
    text-decoration: none;
}

/* Handle the page-collection active state */
.page-collection.active {
    background-color: #8B0000 !important;
    border-radius: 4px;
}

.page-collection.active a {
    color: white !important;
}

/* Main navbar hover and active effects */
.main-nav ul li a {
    color: #8B0000 !important;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none !important;
    outline: none !important;
    background: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li a:active {
    background-color: #8B0000 !important;
    color: white !important;
    border-radius: 4px;
    border: none !important;
}

/* Subnav styles */
.subnav ul li a {
    color: #8B0000 !important;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none !important;
    outline: none !important;
    background: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.subnav ul li a:hover {
    background-color: #8B0000 !important;
    color: white !important;
    border-radius: 4px;
    border: none !important;
}

.subnav ul li.active a {
    background-color: #8B0000 !important;
    color: white !important;
    border-radius: 4px;
    border: none !important;
}

/* Handle the folder-collection active state */
.folder-collection.active > a {
    background-color: #8B0000 !important;
    color: white !important;
    border-radius: 4px;
}

.folder-collection.active {
    background: none !important;
}