/* === PAGE LAYOUT === */
.claims-page {
  padding: 60px 120px;
  min-height: 85vh;
  background: #f6f9fc;
}

.claims-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1d1d1d;
}

.claims-header .claims-sub {
  margin-top: 6px;
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
}

/* === CLAIM LIST === */
.claims-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Each Claim Row */
.claim-row {
  padding: 20px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  transition: 0.2s;
}

.claim-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Left Info */
.claim-info {
  flex: 1;
}

.claim-info strong {
  font-size: 20px;
  color: #111;
}

.claim-meta {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

/* Status badge */
.claim-status {
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 700;
  width: max-content;
}

.claim-status.pending {
  background: #fff2cc;
  color: #936f00;
}

.claim-status.approved {
  background: #e6f6e9;
  color: #1f7a2f;
}

.claim-status.rejected {
  background: #ffe6e6;
  color: #b03030;
}

.claim-status.more_info {
  background: #e8f1ff;
  color: #265ecf;
}

/* Button */
.claim-view-btn {
  padding: 10px 18px;
  background: #4CAF4F;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.claim-view-btn:hover {
  background: #3d8b40;
}

/* Empty State */
.empty-claims {
  padding: 60px;
  text-align: center;
  color: #666;
  font-size: 18px;
}
