Additional styles for CreatePaymentTermModal
/* Add these to your existing CreateProjectModal.module.css */

/* Section Styles */
.section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sectionTitle {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* Info Card */
.infoCard {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  grid-column: span 2;
}

.infoRow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.infoRow:last-child {
  border-bottom: none;
}

.infoLabel {
  color: #6b7280;
  font-size: 14px;
}

.infoValue {
  color: #1f2937;
  font-weight: 500;
  font-size: 14px;
}

/* Table Styles */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.table td {
  color: #1f2937;
}

.table tr:hover td {
  background: #f9fafb;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.badgeDRAFT {
  background: #fef3c7;
  color: #92400e;
}

.badgeAPPROVED,
.badgeSIGNED {
  background: #d1fae5;
  color: #065f46;
}

.badgePENDING {
  background: #e0e7ff;
  color: #3730a3;
}

.badgePAID,
.badgeCOMPLETED,
.badgeACTIVE {
  background: #d1fae5;
  color: #065f46;
}

.badgeOVERDUE {
  background: #fee2e2;
  color: #991b1b;
}

.badgePARTIAL {
  background: #fef3c7;
  color: #92400e;
}

/* Dropdown Styles */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}

.dropdownItem {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdownItem:hover {
  background: #f3f4f6;
}

.dropdownItem strong {
  color: #1f2937;
}

.dropdownItem span {
  color: #6b7280;
  font-size: 13px;
}

/* Loading Indicator */
.loadingIndicator {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 12px;
}

/* Installment Card */
.installmentCard {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.installmentHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.installmentTitle {
  font-weight: 600;
  color: #1f2937;
}

/* Summary Card */
.summaryCard {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

.summaryRow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summaryRow:last-child {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid #c7d2fe;
  font-weight: 600;
}

/* Button Variations */
.addBtn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.addBtn:hover {
  background: #4338ca;
}

.removeBtn {
  background: #fee2e2;
  color: #991b1b;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.removeBtn:hover {
  background: #fecaca;
}

/* Grid Enhancements */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.full {
  grid-column: span 2;
}

/* Input Enhancements */
.inputSmall {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.inputSmall:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.inputSmall:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}

.inputError {
  border-color: #ef4444;
}

.inputError:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error Message */
.error {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}

.errorAnimate {
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Modal Base */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.closeBtn {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.closeBtn:hover {
  color: #1f2937;
}

.content {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
}

.cancelBtn {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.cancelBtn:hover {
  background: #f3f4f6;
}

.submitBtn {
  background: #4f46e5;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.submitBtn:hover:not(:disabled) {
  background: #4338ca;
}

.submitBtn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* Label */
.label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

/* Contact Box (from original) */
.contactBox {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contactBox .removeBtn {
  position: absolute;
  top: 8px;
  right: 8px;
}