/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 29 2025 | 14:50:39 */
/* 1) Make THIS the scroll container */
.gv-table-container.gv-table-multiple-container{
  max-height: 600px;
  overflow-y: auto;
  overflow-x: auto;          /* optional, helps if table is wide */
}

/* 2) Sticky header cells */
.gv-table-container.gv-table-multiple-container > table.gv-table-view thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background:#9CC43B;color:white; text-shadow: 1px 1px #0D2149; font-weight:900;
}

 /* optional: keep footer from covering header if you use sticky footer later */
.gv-table-container.gv-table-multiple-container > table.gv-table-view tfoot th{
  background:#9CC43B;color:white; text-shadow: 1px 1px #0D2149; font-weight:900;
}


tr:nth-child(even) {background:#F6F7F7;}
tr:nth-child(odd) {background:white;}
tr:has(td:first-of-type:hover) {background:greenyellow;}


/* scope to this GV field only */
.disbursalapproval i.fa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px; /* icon size */
}

.disbursalapproval a.flow_approval_links {
  display: block;
  margin-bottom: 8px;
}


/* APPROVED */
.disbursalapproval i.fa-check::after {
  content: "Sent";
  font-size: 18px;
  font-weight: 600;
  color: #2e7d32;
  margin-left: 8px;
}

/* REJECTED */
.disbursalapproval i.fa-times::after {
  content: "Wrong Info";
  font-size: 18px;
  font-weight: 600;
  color: #c62828;
  margin-left: 8px;
}

td:last-of-type a {display:block; background:green;color:white; padding:2.5px 10px 5px 10px; margin-bottom:2.5px; border-radius:10px; font-weight:400; text-decoration:none !important;}
td:last-of-type a:hover {background: #9CC43B !important; color:white !important; text-decoration:none !important;}

