body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #f0fdf4, #d1fae5);
    color: #1f2937;
    margin: 0;
    padding: 0;
  }
  
  /* Fix Navbar Overlap */
  .container {
    max-width: 1200px;
    margin: 100px auto 50px; /* Added top margin to push content below navbar */
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #047857;
    margin-bottom: 30px;
  }
  
  .summary-section {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .summary-section p {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .highlight-red {
    color: #dc2626;
  }
  
  .highlight-green {
    color: #16a34a;
  }
  
  .table-container {
    overflow-x: auto;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  table th, table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
  }
  
  table th {
    background: #10b981;
    color: #ffffff;
  }
  
  table tbody tr:hover {
    background: #f0fdf4;
  }
  
  table tbody tr td {
    color: #1f2937;
  }
  
  .actions {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .actions button, .actions a {
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .actions button:hover, .actions a:hover {
    background: #047857;
  }

.table-container table {
  border: 3px solid #047857;  /* Thick outer border */
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  font-family: "Courier New", monospace;  /* Credit card style font */
}

.table-container th {
  background: #047857;
  color: white;
  padding: 12px;
  font-size: 1.1em;
  border: 1px solid #047857;
}

.table-container tr:nth-child(odd) {
  background-color: rgba(16, 185, 129, 0.1);  /* Light green for odd rows */
}

.table-container tr:nth-child(even) {
  background-color: white;
}

.table-container td {
  padding: 12px;
  border: 1px solid #d1d5db;
  font-size: 1.1em;
  vertical-align: middle;
}

.table-container button,
.table-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-container button:hover,
.table-container a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expense-amount {
  font-family: "Courier New", monospace;
  letter-spacing: 0.5px;
}

.details-row {
  transition: all 0.3s ease-in-out;
  background: #f0fdf4 !important;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

.details-table td {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
}

.summary-section {
  margin-bottom: 30px;
}

.summary-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #047857;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.summary-btn:hover {
  background: #065f46;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.highlight-red, .highlight-green {
  font-size: 1.25em;
  font-weight: bold;
  padding: 0 8px;
}

.highlight-red {
  color: #dc2626;
}

.highlight-green {
  color: #16a34a;
}

/* Update table header for better alignment with the new layout */
.table-container th:last-child {
  text-align: center;
}
