.sacco-cover-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin: 30px auto;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }

  .sacco-cover-header {
    background-color: #001f7d;
    color: #ffffff;
    padding: 25px;
    text-align: center;
    border-bottom: 6px solid #8cc63f;
  }

  .sacco-cover-header h2 {
    margin: 0 0 5px 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .sacco-cover-header h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #8cc63f;
    font-weight: 600;
  }

  .sacco-cover-header p {
    margin: 0;
    font-size: 15px;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.4;
  }

  .sacco-table-section {
    padding: 25px;
  }

  .sacco-table-title {
    color: #001f7d;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-left: 4px solid #8cc63f;
    padding-left: 10px;
  }

  .sacco-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .sacco-data-table:last-of-type {
    margin-bottom: 0;
  }

  .sacco-data-table th {
    background-color: #f4f7fe;
    color: #001f7d;
    text-align: left;
    padding: 12px 15px;
    font-weight: bold;
    border-bottom: 2px solid #d0daff;
  }

  .sacco-data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eeeeee;
    color: #333333;
  }

  .sacco-data-table tr:hover {
    background-color: #fafafa;
  }

  .sacco-price-text {
    color: #8cc63f;
    font-weight: bold;
    text-align: right;
  }

  th.text-right, td.text-right {
    text-align: right;
  }

  /* Responsive Adjustments */
  @media (max-width: 600px) {
    .sacco-cover-header h2 { font-size: 24px; }
    .sacco-cover-header h3 { font-size: 18px; }
    .sacco-table-section { padding: 15px; }
    .sacco-data-table th, .sacco-data-table td { padding: 10px; font-size: 14px; }
  }