.receipt-discrepancy-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.student-details,
.receipt-details {
  width: 50%;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table th {
  text-align: left;
  width: 40%;
  font-weight: 600;
  padding: 6px;
}

.details-table td {
  padding: 6px;
}

.receipt-discrepancy .action-links a:not(.add-node)::before {
    content: none !important;
}

.receipt-discrepancy-pending .action-links a::before {
    content: none !important;
}

.receipt-discrepancy-approved .action-links a::before {
    content: none !important;
}

.receipt-discrepancy-solved .action-links a::before {
    content: none !important;
}

.receipt-title {
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #0d6efd;
  color: #0d6efd;
  font-size: 18px;
}

.section-box {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #fff;
}

.section-header {
  background: #f8f9fa;
  border-left: 4px solid #0d6efd;
  padding: 6px 10px;
  font-weight: 600;
}

.section-header.warning {
  border-left-color: #f0ad4e;
  background: #fff8e1;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  border: 1px solid #e0e0e0;
  padding: 6px 8px;
  font-size: 14px;
}

.info-table th {
  width: 40%;
  background: #f8f9fa;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  padding: 10px;
}

.student-card {
  border: 1px solid #ddd;
}

.discrepancy-section {
  margin-top: 14px;
  border: 1px solid #ffeeba;
  background: #fff3cd;
}

.disc-block {
  padding: 10px;
  border-top: 1px dashed #e0c97f;
}

.disc-block h6 {
  margin: 0 0 6px;
  font-weight: 600;
}

