/* Add your custom styles here */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar {
  z-index: 1040;
}

.table-responsive {
  max-height: 400px;
  overflow-y: auto;
}

.ic2-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic2-overlay-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  min-width: 400px;
  max-width: 600px;
  max-height: 80vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ic2-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #dee2e6;
}

.ic2-overlay-header h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.ic2-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #0d6efd;
  border-radius: 50%;
  animation: ic2-spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes ic2-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ic2-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ic2-messages:empty {
  display: none;
}

.ic2-message {
  padding: 6px 0;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}

.ic2-message:last-child {
  border-bottom: none;
}

.ic2-message.success {
  color: #198754;
}

.ic2-message.error {
  color: #dc3545;
}

.ic2-message.warning {
  color: #fd7e14;
}

.summary-card.sticky-top {
  top: 1.5rem;
}