body {
  font-family: sans-serif;
  font-size: 16px;
  color: black;
}
.titleHeader{
  color: #ff914d;
}
.text{
text-align: center;
}
table{
margin: 0px auto;
}
.socialSection{
  background-color: #00425a;
  color: #ff914d;
  }
a {
  color: black;
  text-decoration: none;
}
h1, h2, h3{
  color: #00425a;
}


/*ChatGPT addition 10/12/2025*/

:root{
  --bg:#f6f8fb; --card:#ffffff; --accent:#0b5cff; --muted:#666;
  --danger:#d9534f; --ok:#2aa14a;
}
body{font-family:sans-serif; background:var(--bg); margin:0; padding:24px; color:#222;}
.container{max-width:1200px;margin:0 auto;}
header{display:flex;align-items:center;gap:16px;margin-bottom:18px;}
header h1{margin:0;font-size:20px;}
.card{background:var(--card);border-color: black;border-radius:10px;padding:30px;margin-bottom:20px; width: 100%;}
form .grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
label{font-size:13px;color:var(--muted);display:block;margin-bottom:6px;}
input[type="text"], input[type="number"], select, textarea, input[type="date"]{
  width:80%;padding:20px;border-radius:6px;border:1px solid #e2e8f0;background:#fff;font-size:15px;
}
textarea{min-height:80px;resize:vertical;}
.controls{display:flex;gap:8px;align-items:center;margin-top:10px;}
button{padding:8px 12px;border-radius:8px;border:0;background:var(--accent);color:white;cursor:pointer;font-weight:600;}
button.secondary{background:#6b7280;}
button.delete{background:var(--danger);}
.table-wrap{overflow:auto;max-height:420px;background:var(--card);border-radius:8px;padding:8px;}
table{width:100%;border-collapse:collapse;font-size:13px;}
th,td{padding:8px;border-bottom:1px solid #eef2f7;text-align:left;vertical-align:top;}
th{background:transparent;position:sticky;top:0;backdrop-filter:blur(2px);}
.actions button{margin-right:6px;padding:6px 8px;font-size:12px;border-radius:6px;}
.filters{display:inline-block;gap:10px;flex-wrap:wrap;margin-bottom:8px;align-items:center;}
.summary-grid{display:flex;gap:12px;flex-wrap:wrap;}
.summary-card{padding:8px;border-radius:8px;background:#fff;min-width:150px;}
.muted{color:var(--muted);font-size:13px;}
.import-area{display:flex;gap:8px;align-items:center;}
@media (max-width:900px){
  .form .grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:520px){
  .form .grid{grid-template-columns:1fr;}
}

/* ================================
   ENHANCED SUMMARY SECTION STYLING
   ================================ */
   .summary-section {
    background: var(--card);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .summary-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  
  .summary-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
  }
  
  .summary-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
  }
  
  /* Summary Grid Layout */
  .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  
  /* Each summary card */
  .summary-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
  }
  
  .summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* Label + Value styles */
  .summary-card .label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .summary-card .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
  }
  
  /* Highlight special values */
  .summary-card[data-type="total"] .value {
    color: #0b5cff;
  }
  
  .summary-card[data-type="termination"] .value {
    color: #d9534f;
  }
  
  .summary-card[data-type="eligible"] .value {
    color: #2aa14a;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .summary-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 400px) {
    .summary-grid {
      grid-template-columns: 1fr;
    }
  }

/*Table Body Updates*/
/* ============================
   ENHANCED TABLE STYLING
   ============================ */
   .table-wrap {
    overflow: auto;
    max-height: 420px;
    background: var(--card);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  /* Table Base */
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  
  /* Table Header */
  table thead {
    background-color: #00425A;
    color: #ff914d;
  }
  
  table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #00384d;
    position: top;
    top: 0;
    z-index: 1;
    font-size: 13px;
    letter-spacing: 0.3px;
  }
  
  /* Table Body */
  table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
  }
  
  table tbody tr:hover {
    background-color: #f8fafc;
  }
  
  table td {
    padding: 10px 12px;
    vertical-align: top;
    color: #222;
  }
  
  /* Alternate row shading for readability */
  table tbody tr:nth-child(even) {
    background-color: #fdfdfd;
  }
  
  /* Action buttons inside table */
  .actions button {
    margin-right: 6px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Scrollbar Styling */
  .table-wrap::-webkit-scrollbar {
    height: 8px;
    width: 8px;
  }
  .table-wrap::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }
  .table-wrap::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
  
  /* Responsive tweaks */
  @media (max-width: 700px) {
    table th, table td {
      font-size: 12px;
      padding: 8px;
    }
  }
  
  


/*End of chat gpt*/

/*override styles when printing*/
@media print {
  .navBar,
  .google {
    display: none;
    /*background-color: #d9d9d9;
    border: solid;
    border-color: #a9a9a9;
    border-width: 5px;
    left: 0;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 97%;
    z-index: 5;*/
  }
  .wFLogo {
    display: block;
    float: left;
    height: 10%;
    position: relative;
    width: 10%;
    z-index: 6;
  }
  .openMenu {
    background-color: #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    float: right;
    margin-right: 2%;
    margin-top: 1%;
    padding: 5px;
    position: relative;
    width: 20px;
    z-index: 10;
  }
  .line {
    background-color: #ff914d;
    border-radius: 5px;
    height: 5px;
    margin: 10px;
    width: 40px;
  }
  .menuBar {
    background-color: #ff914d;
    display: none;
    height: 100%;
    margin-left: -1%;
    margin-top: -50%;
    padding: 10%;
    position: fixed;
    width: 110%;
    z-index: 4;
  }
  .closeMenu {
    font-size: 40px;
  }
  .mainMenu {
    display: block;
    font-size: 40px;
    color: black;
    margin: 5px;
  }
  .closeMenu:hover {
    color: white;
  }
  .heading {
    margin-top: 15%;
  }
  button {
    background-color: #d9d9d9;
    border-radius: 5px;
    color: black;
    font-size: 30px;
    margin: 2px;
    padding: 10px;
  }
  input {
    padding: 5px;
    font-size: 30px;
    text-align: center;
    width: 50%;
  }
  select {
    padding: 10px;
    font-size: 20px;
    text-align: center;
    width: 90%;
  }
  .socialSection{
    display: none;
  }
  .referralLinks{
    display: none;
    }
}



@media screen and (min-width: 800px) and (max-width: 4000px) {
  .navBar {
    background-color: #00425a;
    border: solid;
    border-color: #a9a9a9;
    border-width: 5px;
    left: 0;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
  }
  .wFLogo {
    display: inline-block;
    float: left;
    height: 10%;
    position: relative;
    width: 10%;
    z-index: 6;
  }
  .openMenu {
    background-color: #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    float: right;
    margin-right: 2%;
    margin-top: 1%;
    padding: 5px;
    position: relative;
    width: 60px;
    z-index: 10;
  }
  .line {
    background-color: #ff914d;
    border-radius: 5px;
    height: 5px;
    margin: 10px;
    width: 40px;
  }
  .menuBar {
    background-color: #ff914d;
    display: none;
    height: 100%;
    margin-left: -5%;
    margin-top: -10%;
    padding: 10%;
    position: fixed;
    width: 110%;
    z-index: 4;
  }
  .closeMenu {
    font-size: 40px;
  }
  .mainMenu {
    display: block;
    font-size: 40px;
    color: black;
    margin: 5px;
  }
  .closeMenu:hover {
    color: white;
  }
  .heading {
    margin-top: 15%;
  }
  button {
    background-color: #d9d9d9;
    border-radius: 5px;
    color: black;
    font-size: 30px;
    margin: 2px;
    padding: 10px;
  }
  input {
    font-size: 30px;
    margin: 5px;
    padding: 10px;
    text-align: center;
    width: 80%;
  }
  select {
    padding: 10px;
    font-size: 20px;
    text-align: center;
    width: 90%;
  }
  .followUs {
    display: inline;
    height: 5%;
    width: 5%;
  }
  .socialSection{
    margin-left: -25px;
    padding: 15px;
    width: 115%;
    }
  .referralLinks{
    height: 20%;
    position: center;
    width: 30%;
    }
}
@media screen and (max-width: 799px) and (min-width: 650px) {
  .navBar {
    background-color: #00425a;
    border: solid;
    border-color: #a9a9a9;
    border-width: 5px;
    left: 0;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 98.61%;
    z-index: 10;
  }
  .wFLogo {
    display: inline-block;
    height: 15%;
    margin-top: 2%;
    width: 15%;
  }
  .openMenu {
    background-color: #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    float: right;
    margin-right: 5%;
    margin-top: -10%;
    padding: 5px;
    z-index: 10;
  }
  .line {
    background-color: #ff914d;
    border-radius: 5px;
    height: 5px;
    margin: 10px;
    width: 40px;
  }
  .menuBar {
    background-color: #ff914d;
    display: none;
    height: 100%;
    margin-left: -3%;
    margin-top: -7%;
    padding: 30%;
    position: fixed;
    width: 115%;
    z-index: 7;
  }
  .closeMenu {
    font-size: 40px;
  }
  .mainMenu {
    display: block;
    font-size: 40px;
    color: black;
    margin: 5px;
  }
  .closeMenu:hover {
    color: white;
  }
  .heading{
    margin-top: 20%;
  }
  input {
    font-size: 30px;
    margin: 5px;
    padding: 5px;
    text-align: center;
    width: 50%;
  }
  select {
    padding: 10px;
    font-size: 20px;
    text-align: center;
    width: 90%;
  }
  button {
    background-color: #d9d9d9;
    border-radius: 5px;
    color: black;
    font-size: 30px;
    margin: 2px;
    padding: 10px;
  }
  .followUs {
    display: inline;
    height: 5%;
    width: 5%;
  }
  .referralLinks{
    height: 20%;
    position: center;
    width: 30%;
    }
    .socialSection{
      margin-left: -15px;
      padding: 15px;
      width: 115%;
      }
}
@media screen and (max-width: 649px) and (min-width: 50px) {
  .navBar {
    background-color: #00425a;
    border: solid;
    border-color: #a9a9a9;
    border-width: 5px;
    left: 0;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 98.61%;
    z-index: 10;
  }
  .wFLogo {
    display: inline-block;
    height: 25%;
    margin-top: 5%;
    width: 25%;
  }
  .openMenu {
    background-color: #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    float: right;
    margin-right: 8%;
    margin-top: -15%;
    padding: 5px;
    z-index: 10;
  }
  .line {
    background-color: #ff914d;
    border-radius: 5px;
    height: 5px;
    margin: 10px;
    width: 40px;
  }
  .menuBar {
    background-color: #ff914d;
    display: none;
    height: 105%;
    margin-left: -5%;
    margin-top: -20%;
    padding: 30%;
    position: fixed;
    width: 120%;
    z-index: 7;
  }
  .closeMenu {
    font-size: 40px;
  }
  .mainMenu {
    display: block;
    font-size: 25px;
    color: black;
    margin: 5px;
    width: 90%;
  }
  .closeMenu:hover {
    color: white;
  }
  .heading {
    margin-top: 60%;
  }
  input {
    font-size: 30px;
    margin: 5px;
    padding: 10px;
    text-align: center;
    width: 90%;
  }
  select {
    padding: 10px;
    font-size: 20px;
    text-align: center;
    width: 110%;
  }
  button {
    background-color: #d9d9d9;
    border-radius: 5px;
    color: black;
    font-size: 30px;
    margin: 2px;
    padding: 10px;
  }
  .followUs {
    display: inline;
    height: 10%;
    width: 10%;
  }
  .referralLinks{
    height: 20%;
    position: center;
    width: 50%;
    }
    .socialSection{
      margin-left: -15px;
      padding: 15px;
      width: 115%;
      }
}