   #loadingOverlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9999;
    }

    #loadingSpinner {
      border: 16px solid #d2f34c;
      border-top: 16px solid #244034;
      border-radius: 50%;
      width: 120px;
      height: 120px;
      animation: spin 2s linear infinite;
      position: absolute;
      top:0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

  #loadingText {
    font-size: 24px;
    color: white; 
    position: absolute;
    top:50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    margin: auto; 
  }

  /* ====== Custom Alert Styles ====== */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin: 15px auto;
  font-size: 15px;
  line-height: 1.5;
  max-width: 800px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.alert strong {
  margin-right: 6px;
}

.alert i {
  margin-right: 8px;
  font-size: 18px;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.alert-info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

/* Dismiss button */
.alert .close-btn {
  position: absolute;
  right: 15px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

/* Form Control Base Styles */
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

/* Focus State */
.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background-color: #fafbfc;
}

/* Placeholder Styling */
.form-control::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* Disabled State */
.form-control:disabled {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Readonly State */
.form-control[readonly] {
  background-color: #f8f9fa;
  border-color: #e9ecef;
  color: #495057;
}

/* Table Base Styles */
.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1rem 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  font-size: 0.875rem;
  line-height: 1.25;
}

/* Table Head */
.table th {
  background-color: #f8fafc;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #374151;
  border-bottom: 2px solid #e5e7eb;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Table Body */
.table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  color: #6b7280;
  vertical-align: top;
}

/* Table Row Hover */
.table tbody tr {
  transition: all 0.2s ease;
}

.table tbody tr:hover {
  background-color: #f9fafb;
}

/* Last Row Border Removal */
.table tbody tr:last-child td {
  border-bottom: none;
}