body {
    font-family: Arial, sans-serif;
    background: #f7f9fc;
    padding: 20px;
    color: #333;
  }
  h1 {
    color: #2b4f81;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  th, td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
  }
  th {
    background: #2b4f81;
    color: white;
  }
  label {
    margin-right: 10px;
  }
  .button {
    background-color: #2b4f81;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
  }
  .tooltip {
    font-size: 14px;
    color: #555;
    background: #eef2f5;
    padding: 10px;
    border-left: 4px solid #2b4f81;
    margin-top: 20px;
  }

  .summary {
    background: #e8f0fe;
    border-left: 5px solid #2b4f81;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
  }
  .progress-container {
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .progress-bar {
    height: 24px;
    background: #2b4f81;
    width: 0%;
    color: white;
    text-align: center;
    line-height: 24px;
    transition: width 0.3s ease-in-out;
  }

  /* Modal Styling */
.modal {
  display: none; position: fixed; z-index: 999;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px; border-radius: 10px;
  width: 300px; text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content button {
  margin: 10px; padding: 10px 20px;
  border: none; border-radius: 5px;
  background: #2c3e50; color: white;
  cursor: pointer;
}

.modal-content button:hover {
  background: #34495e;
}

.close {
  color: #aaa; float: right; font-size: 28px;
  font-weight: bold; cursor: pointer;
}

.close:hover { color: black; }

.accordion-button {
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.4s;
  margin-bottom: 10px; /* Adds space between buttons */
  border-radius: 6px;   /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */
}

.accordion-content {
  display: none;
  padding: 20px;
  background-color: #f4f4f4;
  border-left: 4px solid #007BFF;
  border-radius: 0 0 6px 6px; /* Rounded bottom corners */
  margin-top: -10px; /* Slight overlap to visually attach to button */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Match button's shadow */
}

.accordion-button.active + .accordion-content {
  display: block;
}

h4 {
  color: #007BFF;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.notes-container {
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #f9f9f9;
}

.notes-container h3 {
  margin-top: 0;
  color: #333;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

.notes-container div {
  border: 1px dashed #999;
  padding: 10px;
  margin: 10px 0;
  background-color: #fff;
}

.notes-container.internal {
  border-left: 5px solid #4a90e2;
}

.notes-container.client {
  border-left: 5px solid #50b674;
}

.export-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.export-buttons button {
  padding: 8px 16px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.export-buttons button:hover {
  background-color: #555;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #6088d1;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #2e0fdd;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #1abc9c;
}