  .batch-section-header {
    background-color: grey;
    margin: 1px;
    color: white;
    padding: 0.3rem;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
  }

  .batch-card {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
    margin-top: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #edfefc;
    border: solid 1px rgb(169, 169, 169);
  }

  .batch-card .batch-header {
    display: grid;
    grid-template-columns: 14% 44% 15% 25%;
    justify-content: space-around;
    align-items: center;
  }

  .batch-card .batch-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #2c3e50;
  }

  .batch-card .program {
    font-size: 1.2em;
    color: #034729;
    margin-left: 25px;
    display: inline-block;
  }

  .batch-card .tags div {
    display: inline-block;
    padding: 3px 5px;
    border-radius: 8px;
    font-size: 0.8em;
    margin-right: 3px;
  }


  .batch-card .active {
    background: #e6f7f1;
    color: #16a34a;
  }

  .batch-card .inactive {
    background: #f0f0f0;
    color: #555;
  }

  .batch-card .stats {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    text-align: center;
    gap: 8px;
  }

  .batch-card .stats div {
    background: #eceef7;
    padding: 5px;
    border-radius: 8px;
  }

  .batch-card .stats span {
    display: block;
    font-size: 0.8em;
    color: #777;
  }

  .batch-card .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .batch-card .actions button {
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    cursor: pointer;
    transition: 0.2s;
  }

  .batch-card .fee {
    background: #e0f2fe;
    color: #0369a1;
  }

  .batch-card .cert {
    background: #f3e8ff;
    color: #6b21a8;
  }

  .batch-card .placed {
    background: #dcfce7;
    color: #166534;
  }

  .batch-card .actions button:hover {
    opacity: 0.85;
  }

  .batch-card .verify-block {
    font-size: 0.85em;
    color: #444;
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
  }

  .batch-card .verify-block a {
    color: #0369a1;
    text-decoration: none;
    margin: 6px;
    display: inline-block;
    background: #eceef7;
    border-radius: 8px;
    padding: 6px;
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    min-height: min-content;
    height: 10px;
    max-height: max-content;
  }

  .batch-card .verify-block a:hover {
    text-decoration: underline;
  }

  .batch-card .inactive-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
    font-size: 0.8em;
    color: #555;
    margin: 10px 0;
  }

  .batch-card .inactive-list div {
    background: #fafafa;
    padding: 4px 8px;
    border-radius: 6px;
  }

  .batch-card .tags div:nth-child(1) {
    background: #e5f7f9;
    color: #006064;
  }

  .batch-card .tags div:nth-child(2) {
    background: #f7f3ec;
    color: #e65100;
  }

  .batch-card .tags div:nth-child(3) {
    background: #f6ecf8;
    color: #4a148c;
  }

  .batch-card .tags div:nth-child(4) {
    background: #e8f5e9;
    color: #1b5e20;
  }

  .batch-card .verify-block a:nth-child(1) {
    background: #fbf9e5;
    color: #0369a1;
  }

  /* blue */
  .batch-card .verify-block a:nth-child(4) {
    background: #fce7f3;
    color: #991b1b;
  }

  /* green */

  .batch-card .stats div:nth-child(7) {
    background: #ede9fe;
    color: #0369a1;
  }

  /* pink */
  .batch-card .stats div:nth-child(8) {
    background: #e9f6ed;
    color: #854d0e;
  }

  /* yellow */


  .batch-card .sponsored {
    font-size: 0.85em;
    margin: 8px 0;
    padding: 6px 10px;
    background: #fef9c3;
    color: #854d0e;
    border-radius: 8px;
  }

  .batch-card .cert-actions,
  .placed-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85em;
  }

  .batch-card .cert-actions a,
  .placed-actions a {
    color: #2563eb;
    text-decoration: none;
  }

  .batch-card .cert-actions a:hover,
  .placed-actions a:hover {
    text-decoration: underline;
  }


  /* Responsive */
  @media (max-width: 768px) {
    .batch-card .stats {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 550px) {
    .batch-card .batch-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      font-size: 0.9em;
      width: 100%;
    }

    .batch-card {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      align-items: stretch;
    }

    .batch-card .program {
      margin-left: 0;
      margin-top: 5px;
    }

    .batch-card .inactive {
      font-size: 0.8em;
      margin: 5px 0;
    }

    .batch-card .verify-block {
      width: 100%;
      max-width: 100%;
      gap: 10px;
      margin: 10px 0;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .batch-card .verify-block a {
      margin: 3px;
      height: auto;
      min-height: auto;
    }

    .batch-card .stats {
      width: 100%;
      max-width: 100%;
      grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
      font-size: 0.75em;
      gap: 5px;
    }
  }