/* Professional HiringStack Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

.App {
  min-height: 100vh;
}

/* Professional Navigation */
.professional-nav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 70px;
}

.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-logo {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a,
.dropdown-content button {
  display: block;
  padding: 0.75rem 1rem;
  color: #334155;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dropdown-content a:hover,
.dropdown-content button:hover {
  background: #f1f5f9;
}

.user-menu .nav-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.5rem 1rem;
}

.user-avatar {
  background: white;
  color: #667eea;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.logout-btn {
  color: #dc2626 !important;
  font-weight: 500;
}

/* Professional Login Page */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
}

.login-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-icon {
  font-size: 3rem;
  margin-right: 0.5rem;
}

.login-header h1 {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.login-subtitle {
  color: #64748b;
  margin-top: 0.5rem;
}

.error-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.error-icon {
  margin-right: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.login-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.875rem;
}

/* Professional Dashboard */
.app-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-header {
  margin-bottom: 3rem;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.dashboard-header p {
  color: #64748b;
  font-size: 1.125rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 3rem;
}

.dashboard-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dashboard-card.primary {
  border-left-color: #3b82f6;
}

.dashboard-card.success {
  border-left-color: #10b981;
}

.dashboard-card.info {
  border-left-color: #8b5cf6;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-header h3 {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-icon {
  font-size: 1.5rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.metric-label {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background: #10b981;
}

.quick-actions {
  margin-top: 3rem;
}

.quick-actions h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.action-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.action-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.action-card h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.action-card p {
  color: #64748b;
  font-size: 0.875rem;
}

/* Professional Home Page */
.home-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-section {
  text-align: center;
  color: white;
  max-width: 800px;
}

.company-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-logo {
  font-size: 4rem;
  margin-right: 1rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
}

.hero-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0;
  opacity: 0.9;
}

.hero-section p {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Verification Pages */
.verification-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.verification-container h1 {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.verification-container p {
  color: #64748b;
  font-size: 1.125rem;
}

/* Admin Panel */
.admin-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.admin-container h1 {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Loading Spinner */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
/* Form Styling */
.verification-form {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.875rem;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-top: 2rem;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.success-message {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-message h2 {
  color: #1e293b;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-message p {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
}

.verification-features {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.verification-features h3 {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.verification-features ul {
  list-style: none;
  padding: 0;
}

.verification-features li {
  padding: 0.5rem 0;
  color: #374151;
}

/* Admin Panel Styling */
.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.tab-button {
  padding: 1rem 1.5rem;
  border: none;
  background: none;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #374151;
}

.tab-button.active {
  color: #667eea;
  border-bottom-color: #667eea;
}

.admin-content {
  padding: 2rem 0;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-card h3 {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-card .stat-number {
  color: #1e293b;
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .admin-tabs {
    flex-wrap: wrap;
  }
  
  .tab-button {
    padding: 0.75rem 1rem;
  }
}
/* Enhanced Professional Styling */
.metric-trend {
  margin-top: 0.5rem;
}

.trend-up {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-card.warning {
  border-left-color: #f59e0b;
}

.system-health {
  margin-top: 0.5rem;
}

.system-health small {
  color: #64748b;
  font-size: 0.75rem;
}

.action-stats {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.action-stats small {
  color: #10b981;
  font-weight: 500;
}

.recent-activity {
  margin-top: 3rem;
}

.recent-activity h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.activity-list {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.activity-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  font-size: 1.25rem;
  margin-right: 1rem;
  width: 32px;
  text-align: center;
}

.activity-content p {
  margin: 0;
  color: #1e293b;
  font-weight: 500;
}

.activity-content small {
  color: #64748b;
  font-size: 0.875rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1rem;
}

.demo-credentials {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  text-align: center;
}

.demo-credentials small {
  color: #475569;
}

/* Verification Forms */
.verification-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #64748b;
  font-size: 1.1rem;
}

.verification-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* Admin Panel Styles */
.admin-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.admin-header {
  margin-bottom: 2rem;
}

.admin-header h1 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  border-left: 4px solid #3498db;
}

.stat-card.pending {
  border-left-color: #f39c12;
}

.stat-card.completed {
  border-left-color: #27ae60;
}

.stat-card.failed {
  border-left-color: #e74c3c;
}

.stat-card h3 {
  margin: 0 0 0.5rem 0;
  color: #7f8c8d;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2c3e50;
}

.admin-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
}

.verification-list {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.verification-list h2 {
  margin-top: 0;
  color: #2c3e50;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: #7f8c8d;
}

.verification-table {
  width: 100%;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 4px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid #ecf0f1;
  align-items: center;
}

.table-row:hover {
  background: #f8f9fa;
}

.verification-id {
  font-family: monospace;
  font-size: 0.9rem;
}

.verification-type {
  font-weight: 500;
}

.verification-status {
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.verification-status.pending {
  background: #fff3cd;
  color: #856404;
}

.verification-status.completed {
  background: #d4edda;
  color: #155724;
}

.verification-status.failed {
  background: #f8d7da;
  color: #721c24;
}

.verification-status.processing {
  background: #cce7ff;
  color: #004085;
}

.verification-date {
  font-size: 0.9rem;
  color: #6c757d;
}

.admin-actions {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: -webkit-fit-content;
  height: fit-content;
}

.admin-actions h2 {
  margin-top: 0;
  color: #2c3e50;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-btn {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.admin-btn.primary {
  background: #3498db;
  color: white;
}

.admin-btn.primary:hover {
  background: #2980b9;
}

.admin-btn.secondary {
  background: #ecf0f1;
  color: #2c3e50;
}

.admin-btn.secondary:hover {
  background: #d5dbdb;
}

@media (max-width: 768px) {
  .admin-content {
    grid-template-columns: 1fr;
  }
  
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .verification-date,
  .verification-id {
    display: none;
  }
}
/* Analytics Styles */
.analytics-container, .users-container, .settings-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.analytics-header, .users-header, .settings-header {
  margin-bottom: 2rem;
}

.analytics-header h1, .users-header h1, .settings-header h1 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.analytics-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.analytics-card h3 {
  margin: 0 0 1rem 0;
  color: #7f8c8d;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.analytics-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3498db;
}

.analytics-actions, .users-actions, .settings-actions {
  margin-top: 2rem;
}

.btn-back {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #95a5a6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-back:hover {
  background: #7f8c8d;
}

/* User Management Styles */
.users-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}

.user-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.user-card h3 {
  margin: 0 0 0.5rem 0;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.user-count {
  font-size: 2rem;
  font-weight: bold;
  color: #27ae60;
}

.user-list {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-list h2 {
  margin-top: 0;
  color: #2c3e50;
}

.user-table {
  width: 100%;
}

.user-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid #ecf0f1;
  align-items: center;
}

.user-row.header {
  background: #f8f9fa;
  font-weight: bold;
  color: #2c3e50;
}

.role.admin {
  background: #e74c3c;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  text-align: center;
}

.status.active {
  color: #27ae60;
  font-weight: 500;
}

/* Settings Styles */
.settings-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}

.settings-section {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.settings-section h2 {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 0.5rem;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.setting-item label {
  font-weight: 500;
  color: #2c3e50;
}

.setting-item input,
.setting-item select {
  padding: 0.5rem;
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  min-width: 100px;
}

.setting-item input[type="checkbox"] {
  min-width: auto;
  transform: scale(1.2);
}

.btn-save {
  padding: 0.75rem 1.5rem;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 1rem;
  transition: background 0.2s;
}

.btn-save:hover {
  background: #229954;
}

@media (max-width: 768px) {
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .users-content {
    grid-template-columns: 1fr;
  }
  
  .user-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .settings-content {
    grid-template-columns: 1fr;
  }
}
/* Professional Navigation */
.landing-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.brand-icon {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #2563eb;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.dropdown-content a:hover {
  background: #f3f4f6;
  color: #2563eb;
  padding-left: 25px;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-btn.secondary {
  color: #6b7280;
  background: transparent;
}

.nav-btn.secondary:hover {
  color: #2563eb;
  background: #f3f4f6;
}

.nav-btn.primary {
  color: white;
  background: #2563eb;
}

.nav-btn.primary:hover {
  background: #1d4ed8;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .nav-container {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 10px;
  }
  
  .nav-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 20px 80px;
  margin-top: 70px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-bottom: 60px;
}

.cta-primary {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.2s;
}

.cta-primary:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.2s;
}

.cta-secondary:hover {
  background: white;
  color: #667eea;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #f9fafb;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.service {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.service p {
  color: #6b7280;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 80px 20px;
  background: white;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  gap: 40px;
}

.benefit {
  padding: 20px;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.benefit p {
  color: #6b7280;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.cta-secondary.large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .trust-stats {
    gap: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-actions {
    gap: 10px;
  }
  
  .nav-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
/* Form Enhancements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  gap: 15px;
}

.auth-footer .terms {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 10px;
}

textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.login-links {
  margin-top: 15px;
}

.login-links p {
  margin: 5px 0;
}

/* Loading Component */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top: 4px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* AI Technology Section */
.ai-technology {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
  color: white;
}

.ai-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
}

.ai-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.ai-text > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  gap: 30px;
}

.ai-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.ai-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ai-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fbbf24;
}

.ai-feature p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.ai-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ai-stat {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.ai-stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 10px;
}

.ai-stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .ai-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ai-features {
    grid-template-columns: 1fr;
  }
  
  .ai-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .ai-stat {
    flex: 1 1;
    margin: 0 10px;
  }
  
  .ai-stat-number {
    font-size: 2rem;
  }
}
/* Professional Registration Page */
.registration-page, .demo-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 40px 20px;
}

.registration-container, .demo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.registration-header, .demo-header {
  text-align: center;
  margin-bottom: 40px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2563eb;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.registration-title h1, .demo-title h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.registration-title p, .demo-title p {
  font-size: 1.1rem;
  color: #6b7280;
}

.registration-form-container, .demo-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 40px;
  gap: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
}

.registration-benefits, .demo-benefits {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 40px;
}

.registration-benefits h3, .demo-benefits h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fbbf24;
}

.registration-benefits ul, .demo-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.registration-benefits li, .demo-benefits li {
  padding: 8px 0;
  font-size: 0.95rem;
}

.trial-process {
  margin-top: 30px;
}

.trial-process h4 {
  color: #fbbf24;
  margin-bottom: 15px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
}

.step-number {
  background: #fbbf24;
  color: #1f2937;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 20px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.registration-form, .demo-form {
  padding: 40px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  font-size: 1.2rem;
  color: #1f2937;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.registration-submit, .demo-submit {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 20px;
}

.registration-submit:hover, .demo-submit:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.registration-submit:disabled, .demo-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.registration-footer, .demo-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.registration-footer .terms {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 10px;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  background: linear-gradient(135d, #f0fdf4 0%, #dcfce7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.success-container {
  max-width: 800px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 60px 40px;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-content h1 {
  font-size: 2.2rem;
  color: #059669;
  margin-bottom: 15px;
}

.success-content > p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.next-steps {
  text-align: left;
  margin-bottom: 40px;
}

.next-steps h3 {
  color: #1f2937;
  margin-bottom: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-item h4 {
  color: #1f2937;
  margin-bottom: 5px;
}

.step-item p {
  color: #6b7280;
  font-size: 0.9rem;
}

.trial-benefits {
  background: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: left;
}

.trial-benefits h3 {
  color: #1f2937;
  margin-bottom: 15px;
}

.trial-benefits ul {
  list-style: none;
  padding: 0;
}

.trial-benefits li {
  padding: 5px 0;
  color: #4b5563;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .registration-form-container, .demo-content {
    grid-template-columns: 1fr;
  }
  
  .registration-benefits, .demo-benefits {
    order: 2;
  }
  
  .demo-stats {
    grid-template-columns: 1fr;
  }
  
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 200px;
    text-align: center;
  }
}
/* Pricing Page */
.pricing-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 120px 20px 80px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.pricing-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-header h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.5rem;
  color: #6b7280;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
}

.period {
  font-size: 1rem;
  color: #6b7280;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 8px 0;
  color: #374151;
}

.plan-button {
  display: block;
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.plan-button:hover {
  background: #1d4ed8;
}

.pricing-footer {
  text-align: center;
  color: #6b7280;
}

.pricing-footer p {
  margin: 10px 0;
}

/* Industries Page */
.industries-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 120px 20px 80px;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.industries-header h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.industries-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.industry-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.industry-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.industry-card ul {
  list-style: none;
  padding: 0;
}

.industry-card li {
  padding: 5px 0;
  color: #374151;
  font-size: 0.9rem;
}
/* Service Pages */
.service-page, .partners-page, .resources-page, .about-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 120px 20px 80px;
}

.service-container, .partners-container, .resources-container, .about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-hero, .partners-hero, .resources-hero, .about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.service-hero h1, .partners-hero h1, .resources-hero h1, .about-hero h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.service-hero p, .partners-hero p, .resources-hero p, .about-hero p {
  font-size: 1.1rem;
  color: #6b7280;
}

.service-content, .partners-content, .resources-content, .about-content {
  display: grid;
  grid-gap: 60px;
  gap: 60px;
}

.service-features, .partner-category, .resource-category {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-features h2, .partner-category h2, .resource-category h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 30px;
}

.features-grid, .partners-grid, .resources-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.feature, .partner-card, .resource-card, .value {
  padding: 25px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.feature h3, .partner-card h3, .resource-card h3, .value h3 {
  font-size: 1.2rem;
  color: #1f2937;
  margin-bottom: 10px;
}

.feature p, .partner-card p, .resource-card p, .value p {
  color: #6b7280;
  line-height: 1.6;
}

.resource-link {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: color 0.2s;
}

.resource-link:hover {
  color: #1d4ed8;
}

.service-stats, .ai-stats, .company-stats {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.service-stats h2, .ai-stats h2, .company-stats h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.service-note {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
}

.service-note h3 {
  color: #92400e;
  margin-bottom: 10px;
}

.service-note p {
  color: #78350f;
}

.become-partner {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.become-partner h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.become-partner p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.partner-cta {
  display: inline-block;
  background: white;
  color: #059669;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.partner-cta:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}

.company-story, .company-values {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.company-story h2, .company-values h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 20px;
}

.company-story p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .features-grid, .partners-grid, .resources-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-hero h1, .partners-hero h1, .resources-hero h1, .about-hero h1 {
    font-size: 2rem;
  }
}
/* Industry Detail Pages */
.industry-detail {
  display: grid;
  grid-gap: 40px;
  gap: 40px;
}

.industry-features, .industry-stats, .industry-compliance, .industry-cta {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.features-list {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.feature-check {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.industry-link {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  transition: color 0.2s;
}

.industry-link:hover {
  color: #1d4ed8;
}

.industry-compliance {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: white;
}

.industry-compliance h2 {
  color: white;
  margin-bottom: 15px;
}

.industry-compliance p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.industry-cta {
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
}

.industry-cta h2 {
  color: white;
  margin-bottom: 15px;
}

.industry-cta p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary {
  background: white;
  color: #2563eb;
}

.btn-primary:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2563eb;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 200px;
    text-align: center;
  }
}
/* Leadership Page */
.leadership-intro {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.leader-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-avatar {
  font-size: 4rem;
  margin-bottom: 20px;
}

.leader-card h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 5px;
}

.leader-card h4 {
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 15px;
}

.leader-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.leader-experience {
  background: #f3f4f6;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Careers Page */
.careers-intro, .careers-benefits {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 25px;
  gap: 25px;
}

.benefit {
  padding: 25px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.benefit h3 {
  color: #1f2937;
  margin-bottom: 10px;
}

.benefit p {
  color: #6b7280;
}

.open-positions {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.positions-list {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 40px;
}

.position {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.position h3 {
  color: #1f2937;
  margin-bottom: 5px;
}

.position p {
  color: #6b7280;
  font-size: 0.9rem;
}

.position-type {
  background: #2563eb;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.careers-cta {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 10px;
  color: white;
}

.careers-button {
  display: inline-block;
  background: white;
  color: #2563eb;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.2s;
}

.careers-button:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

/* News Page */
.news-intro {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.news-list {
  display: grid;
  grid-gap: 30px;
  gap: 30px;
}

.news-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #2563eb;
}

.news-date {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-item h3 {
  color: #1f2937;
  margin-bottom: 15px;
}

.news-item p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.news-link:hover {
  color: #1d4ed8;
}

/* Contact Page */
.contact-intro {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  text-align: center;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  color: #1f2937;
  margin-bottom: 15px;
}

.contact-card p {
  color: #6b7280;
  margin-bottom: 20px;
}

.contact-button {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
  transition: all 0.2s;
}

.contact-button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.contact-info {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}

.contact-office {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  gap: 30px;
}

.office {
  padding: 25px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.office h3 {
  color: #1f2937;
  margin-bottom: 15px;
}

.office p {
  color: #6b7280;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .leadership-grid, .contact-grid, .offices-grid {
    grid-template-columns: 1fr;
  }
  
  .position {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .position-type {
    align-self: flex-start;
  }
}

/* Real-time Notifications */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
}

.notification {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  padding: 16px;
  border-left: 4px solid #007bff;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideIn 0.3s ease-out;
}

.notification:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.notification-success {
  border-left-color: #28a745;
}

.notification-info {
  border-left-color: #17a2b8;
}

.notification-warning {
  border-left-color: #ffc107;
}

.notification-error {
  border-left-color: #dc3545;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.notification-title {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.notification-time {
  font-size: 12px;
  color: #666;
}

.notification-message {
  color: #555;
  font-size: 13px;
  line-height: 1.4;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-bell {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.notification-bell:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
/* Role-Based Access Control Styles */
.create-user-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.user-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.form-row input, .form-row select {
  flex: 1 1;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.create-btn {
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.create-btn:hover {
  background: #1d4ed8;
}

.users-table-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.user-table {
  display: grid;
  grid-gap: 1px;
  gap: 1px;
  background: #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
}

.user-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr 1fr 1fr;
  padding: 15px;
  background: white;
  align-items: center;
}

.user-row.header {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.role {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.role.super_admin {
  background: #fef3c7;
  color: #92400e;
}

.role.hr_director {
  background: #dbeafe;
  color: #1e40af;
}

.role.hr_manager {
  background: #d1fae5;
  color: #065f46;
}

.role.compliance_officer {
  background: #fce7f3;
  color: #be185d;
}

.role.recruiter {
  background: #e0e7ff;
  color: #3730a3;
}

.role.candidate {
  background: #f3f4f6;
  color: #374151;
}

.status.active {
  color: #059669;
  font-weight: 600;
}

.actions {
  display: flex;
  gap: 8px;
}

.edit-btn, .disable-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.edit-btn {
  background: #3b82f6;
  color: white;
}

.disable-btn {
  background: #ef4444;
  color: white;
}

.permissions-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.permissions-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-top: 20px;
}

.role-card {
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.role-card h3 {
  color: #1f2937;
  margin-bottom: 10px;
}

.role-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}
/* Documentation Page Styles */
.documentation-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.doc-header {
  text-align: center;
  margin-bottom: 40px;
}

.doc-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.doc-header h1 {
  color: #1f2937;
  margin-bottom: 10px;
}

.doc-header p {
  color: #6b7280;
  font-size: 18px;
}

.doc-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.doc-notice {
  text-align: center;
}

.doc-notice h3 {
  color: #2563eb;
  margin-bottom: 20px;
}

.doc-links, .doc-features {
  margin: 30px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.doc-links h4, .doc-features h4 {
  color: #1f2937;
  margin-bottom: 15px;
}

.doc-links ul, .doc-features ul {
  list-style: none;
  padding: 0;
}

.doc-links li, .doc-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.doc-links li:last-child, .doc-features li:last-child {
  border-bottom: none;
}

/* Verification Styles */

/* Main container */
.verification-request-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verification-request-form h1 {
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
  text-align: center;
}

/* Step indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background-color: #4a6cf7;
  color: white;
}

.step-label {
  font-size: 14px;
  color: #6c757d;
  transition: all 0.3s ease;
}

.step.active .step-label {
  color: #4a6cf7;
  font-weight: 500;
}

.step-connector {
  flex-grow: 1;
  height: 2px;
  background-color: #e9ecef;
  margin: 0 10px;
  position: relative;
  top: -18px;
}

/* Verification type selection */
.verification-type-selection {
  text-align: center;
}

.verification-type-selection h2 {
  margin-bottom: 30px;
  color: #333;
}

.verification-type-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.verification-type-card {
  width: 280px;
  padding: 30px;
  border-radius: 8px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verification-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #4a6cf7;
}

.verification-type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e7f5ff;
}

.employment-icon::before {
  content: "👔";
  font-size: 40px;
}

.education-icon::before {
  content: "🎓";
  font-size: 40px;
}

.verification-type-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.verification-type-card p {
  color: #6c757d;
  font-size: 14px;
}

/* Form styles */
.verification-form {
  margin-top: 30px;
}

.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.form-section h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1 1;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4a6cf7;
  outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
}

.error-text {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.primary-button {
  padding: 12px 24px;
  background-color: #4a6cf7;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.primary-button:hover {
  background-color: #3a5ce5;
}

.primary-button:disabled {
  background-color: #a5b4fc;
  cursor: not-allowed;
}

.secondary-button {
  padding: 12px 24px;
  background-color: transparent;
  color: #4a6cf7;
  border: 1px solid #4a6cf7;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.secondary-button:hover {
  background-color: #eef1ff;
}

/* Basic info section */
.basic-info-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.basic-info-section h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

/* Document upload styles */
.document-upload {
  margin-top: 30px;
}

.upload-instructions {
  margin-bottom: 20px;
}

.upload-instructions h3 {
  margin-bottom: 10px;
  color: #333;
}

.upload-instructions p {
  color: #6c757d;
  margin-bottom: 15px;
}

.suggested-documents {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.suggested-documents h4 {
  margin-bottom: 10px;
  color: #495057;
  font-size: 16px;
}

.suggested-documents ul {
  padding-left: 20px;
  margin: 0;
}

.suggested-documents li {
  margin-bottom: 5px;
  color: #6c757d;
}

.file-drop-zone {
  border: 2px dashed #ced4da;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.file-drop-zone:hover {
  border-color: #4a6cf7;
}

.file-upload-label {
  display: block;
  cursor: pointer;
}

.upload-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background-color: #e7f5ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-icon::before {
  content: "📄";
  font-size: 30px;
}

.file-upload-label span {
  display: block;
  margin-bottom: 5px;
  color: #495057;
}

.file-types {
  font-size: 14px;
  color: #6c757d;
}

input[type="file"] {
  display: none;
}

.selected-files,
.uploaded-documents {
  margin-top: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
}

.selected-files h4,
.uploaded-documents h4 {
  margin-bottom: 15px;
  color: #495057;
  font-size: 16px;
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #e9ecef;
}

.file-item:last-child {
  border-bottom: none;
}

.file-info {
  display: flex;
  flex-direction: column;
}

.file-name {
  font-weight: 500;
  color: #495057;
  margin-bottom: 3px;
}

.file-size {
  font-size: 12px;
  color: #6c757d;
}

.remove-file {
  background-color: transparent;
  border: none;
  color: #dc3545;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
}

.progress-bar {
  width: 100px;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #4a6cf7;
  transition: width 0.3s ease;
}

.progress-text {
  position: absolute;
  right: -30px;
  top: -4px;
  font-size: 12px;
  color: #6c757d;
}

.upload-button {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #4a6cf7;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.upload-button:hover {
  background-color: #3a5ce5;
}

.upload-button:disabled {
  background-color: #a5b4fc;
  cursor: not-allowed;
}

.upload-success {
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}

.upload-error {
  color: #dc3545;
  margin-top: 10px;
  padding: 10px;
  background-color: #f8d7da;
  border-radius: 4px;
}

/* Success message */
.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #d4edda;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-icon::before {
  content: "✓";
  font-size: 40px;
  color: #28a745;
}

.success-message h2 {
  margin-bottom: 15px;
  color: #28a745;
}

.success-message p {
  margin-bottom: 10px;
  color: #495057;
}

.success-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #4a6cf7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: #6c757d;
}

/* Error message */
.error-message {
  padding: 15px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* State-specific styles */
.state-requirements-section {
  border-left: 4px solid #4a6cf7;
  background-color: #f0f4ff;
}

.state-specific-fields h4 {
  color: #4a6cf7;
  margin-bottom: 15px;
}

.field-description {
  font-size: 12px;
  color: #6c757d;
  margin-top: 5px;
}

.state-specific-error {
  margin-top: 15px;
  padding: 10px;
  background-color: #fff3cd;
  border-radius: 4px;
  border-left: 4px solid #ffc107;
}

.state-requirements-notice,
.institution-requirements-notice,
.document-requirements-notice {
  margin-top: 15px;
  padding: 15px;
  background-color: #e7f5ff;
  border-radius: 4px;
  border-left: 4px solid #4dabf7;
}

.state-requirements-notice h4,
.institution-requirements-notice h4 {
  color: #1971c2;
  margin-bottom: 10px;
}

.required-document {
  font-weight: 500;
}

.required-indicator {
  color: #dc3545;
  margin-left: 5px;
}

.required-notice {
  font-size: 12px;
  color: #dc3545;
  margin-top: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .verification-request-form {
    padding: 20px;
  }
  
  .verification-type-options {
    flex-direction: column;
    align-items: center;
  }
  
  .verification-type-card {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-actions {
    justify-content: center;
  }
  
  .step-indicator {
    flex-direction: column;
    gap: 10px;
  }
  
  .step-connector {
    width: 2px;
    height: 20px;
    margin: 5px 0;
    top: 0;
  }
  
  .step {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    gap: 15px;
  }
  
  .step-number {
    margin-bottom: 0;
  }
}

/* Verification Status Display Styles */
.verification-status-display {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verification-status-display h1 {
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
  text-align: center;
}

.verification-status-display h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
}

.verification-status-display h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}

.verification-status-display h4 {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

/* Status visualization */
.status-visualization-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.status-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.status-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 20px;
}

.status-text {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.status-pending {
  background-color: #ffc107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.status-in-progress {
  background-color: #17a2b8;
  box-shadow: 0 0 15px rgba(23, 162, 184, 0.5);
}

.status-verified {
  background-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.5);
}

.status-discrepancy {
  background-color: #dc3545;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}

.status-unable {
  background-color: #6c757d;
  box-shadow: 0 0 15px rgba(108, 117, 125, 0.5);
}

/* Status timeline */
.status-timeline {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1 1;
}

.step-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e9ecef;
  border: 2px solid #ced4da;
  margin-bottom: 8px;
  z-index: 2;
}

.timeline-step.active .step-indicator {
  background-color: #4a6cf7;
  border-color: #4a6cf7;
}

.timeline-step.completed .step-indicator {
  background-color: #28a745;
  border-color: #28a745;
}

.step-label {
  font-size: 14px;
  color: #6c757d;
}

.timeline-step.active .step-label {
  color: #4a6cf7;
  font-weight: 500;
}

.timeline-step.completed .step-label {
  color: #28a745;
  font-weight: 500;
}

.timeline-connector {
  flex-grow: 1;
  height: 2px;
  background-color: #e9ecef;
  position: relative;
  z-index: 1;
}

.timeline-connector.completed {
  background-color: #28a745;
}

/* Verification details */
.verification-details-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.verification-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 15px;
  gap: 15px;
}

.info-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}

.info-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.info-value {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
}

/* Verification result */
.verification-result {
  margin-top: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.result-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
  gap: 15px;
  margin-bottom: 20px;
}

.result-item {
  display: flex;
  flex-direction: column;
}

.result-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.result-value {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
}

/* Discrepancies table */
.discrepancies-section {
  margin-top: 20px;
}

.discrepancies-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

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

.discrepancies-table th {
  background-color: #f8f9fa;
  font-weight: 500;
  color: #495057;
}

.discrepancies-table tr:hover {
  background-color: #f8f9fa;
}

/* Workflow tasks */
.workflow-tasks-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.task-item {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border-left: 4px solid #e9ecef;
}

.task-item.pending {
  border-left-color: #ffc107;
}

.task-item.in_progress {
  border-left-color: #17a2b8;
}

.task-item.completed {
  border-left-color: #28a745;
}

.task-item.failed {
  border-left-color: #dc3545;
}

.task-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.task-type {
  font-weight: 500;
  color: #495057;
}

.task-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.task-status.pending {
  background-color: #fff3cd;
  color: #856404;
}

.task-status.in_progress {
  background-color: #d1ecf1;
  color: #0c5460;
}

.task-status.completed {
  background-color: #d4edda;
  color: #155724;
}

.task-status.failed {
  background-color: #f8d7da;
  color: #721c24;
}

.task-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.task-info {
  display: flex;
  flex-direction: column;
}

/* Notifications */
.notifications-section {
  margin-bottom: 30px;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4a6cf7;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.notification-item.status {
  border-left-color: #4a6cf7;
}

.notification-item.error {
  border-left-color: #dc3545;
  background-color: #f8d7da;
}

.notification-item.warning {
  border-left-color: #ffc107;
  background-color: #fff3cd;
}

.notification-item.success {
  border-left-color: #28a745;
  background-color: #d4edda;
}

.notification-content {
  flex: 1 1;
}

.notification-message {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.notification-time {
  font-size: 12px;
  color: #6c757d;
}

.notification-dismiss {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
}

.notification-dismiss:hover {
  color: #495057;
}

/* Responsive styles */
@media (max-width: 768px) {
  .verification-status-display {
    padding: 20px;
  }
  
  .verification-info-grid,
  .result-details,
  .task-details {
    grid-template-columns: 1fr;
  }
  
  .status-timeline {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-connector {
    width: 2px;
    height: 30px;
  }
}
/* Verification Result Display Styles */
.verification-result-display {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verification-result-display h1 {
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
  text-align: center;
}

/* Result tabs */
.result-tabs {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 20px;
  overflow-x: auto;
}

.tab-button {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.tab-button:hover {
  color: #4a6cf7;
}

.tab-button.active {
  color: #4a6cf7;
  border-bottom-color: #4a6cf7;
}

.tab-button .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #dc3545;
  color: white;
  font-size: 12px;
  margin-left: 8px;
}

/* Result content */
.result-content {
  margin-bottom: 30px;
  min-height: 300px;
}

/* No results message */
.no-results-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}

.pending-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.pending-icon::before {
  content: "⏳";
  font-size: 40px;
}

.no-results-message h2 {
  margin-bottom: 15px;
  color: #6c757d;
}

.no-results-message p {
  color: #6c757d;
  max-width: 500px;
  margin-bottom: 20px;
}

.view-status-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4a6cf7;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.view-status-link:hover {
  background-color: #3a5ce5;
}

/* Result summary */
.verification-result-summary {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.result-status-badge {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  font-size: 18px;
}

.result-status-badge.verified {
  background-color: #28a745;
}

.result-status-badge.discrepancy {
  background-color: #dc3545;
}

.result-status-badge.unable_to_verify {
  background-color: #6c757d;
}

.result-status-badge.pending {
  background-color: #ffc107;
  color: #212529;
}

.result-status-badge.in_progress {
  background-color: #17a2b8;
}

.result-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #6c757d;
  font-size: 14px;
}

.result-method,
.result-notes,
.result-discrepancy-summary {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.result-method h4,
.result-notes h4,
.result-discrepancy-summary h4 {
  margin-bottom: 10px;
  color: #495057;
  font-size: 16px;
}

.discrepancy-alert {
  padding: 10px 15px;
  background-color: #f8d7da;
  border-left: 4px solid #dc3545;
  color: #721c24;
  border-radius: 4px;
}

/* Verification details table */
.verification-details-table {
  overflow-x: auto;
}

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

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

.verification-details-table th {
  background-color: #f8f9fa;
  font-weight: 500;
  color: #495057;
}

.verification-details-table tr.has-discrepancy {
  background-color: #fff3cd;
}

.field-name {
  font-weight: 500;
  color: #495057;
}

.field-value,
.field-verified-value {
  color: #212529;
}

.field-status {
  white-space: nowrap;
}

.verified-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.discrepancy-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.severity-indicator {
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
}

.severity-indicator.major {
  background-color: #dc3545;
  color: white;
}

.severity-indicator.minor {
  background-color: #ffc107;
  color: #212529;
}

/* Discrepancies list */
.discrepancies-section {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.discrepancies-section h3 {
  margin-bottom: 20px;
  color: #495057;
  font-size: 18px;
}

.discrepancies-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.discrepancy-item {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.discrepancy-item.minor {
  border-left-color: #ffc107;
}

.discrepancy-item.major {
  border-left-color: #dc3545;
}

.discrepancy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.discrepancy-field {
  font-weight: 500;
  color: #495057;
  font-size: 16px;
}

.severity-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.severity-badge.major {
  background-color: #dc3545;
  color: white;
}

.severity-badge.minor {
  background-color: #ffc107;
  color: #212529;
}

.discrepancy-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  gap: 15px;
}

.reported-value,
.verified-value {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.value-label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 5px;
}

.value {
  font-weight: 500;
  color: #212529;
  word-break: break-word;
}

/* Documents section */
.documents-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.evidence-documents,
.supporting-documents {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.evidence-documents h3,
.supporting-documents h3 {
  margin-bottom: 20px;
  color: #495057;
  font-size: 18px;
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.document-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.document-icon {
  width: 40px;
  height: 40px;
  background-color: #e7f5ff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 20px;
  color: #4a6cf7;
}

.document-info {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.document-name {
  font-weight: 500;
  color: #212529;
  margin-bottom: 5px;
}

.document-meta {
  font-size: 12px;
  color: #6c757d;
}

.view-document-btn {
  padding: 8px 15px;
  background-color: #4a6cf7;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-document-btn:hover {
  background-color: #3a5ce5;
}

/* Verification history/timeline */
.verification-history {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.verification-history h3 {
  margin-bottom: 20px;
  color: #495057;
  font-size: 18px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e9ecef;
}

.timeline-event {
  position: relative;
  margin-bottom: 25px;
}

.timeline-event:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #4a6cf7;
  border: 3px solid #fff;
  z-index: 1;
}

.timeline-content {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.event-title {
  font-weight: 500;
  color: #212529;
}

.event-time {
  font-size: 12px;
  color: #6c757d;
}

.event-details {
  color: #495057;
}

/* Result actions */
.result-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* No results */
.no-results {
  padding: 30px;
  text-align: center;
  color: #6c757d;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed #ced4da;
}

/* Responsive styles */
@media (max-width: 768px) {
  .verification-result-display {
    padding: 20px;
  }
  
  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .result-meta {
    align-items: flex-start;
    margin-top: 10px;
  }
  
  .discrepancy-values {
    grid-template-columns: 1fr;
  }
  
  .result-actions {
    flex-direction: column;
  }
  
  .tab-button {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media print {
  .verification-result-display {
    box-shadow: none;
    padding: 0;
  }
  
  .result-tabs,
  .result-actions {
    display: none;
  }
  
  .verification-result-summary,
  .verification-details-table,
  .discrepancies-section,
  .documents-section,
  .verification-history {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 20px;
  }
  
  .document-item {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  
  .view-document-btn {
    display: none;
  }
}
/* View full results button */
.view-full-results {
  margin-top: 20px;
  text-align: center;
}

.view-results-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4a6cf7;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.view-results-button:hover {
  background-color: #3a5ce5;
}

/* Report Generator Styles */
.report-generator-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.report-generator-container h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  text-align: center;
}

.report-warning {
  padding: 15px;
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  margin-bottom: 20px;
  color: #856404;
}

.report-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.option-section {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.option-section h3 {
  margin-bottom: 15px;
  color: #495057;
  font-size: 18px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-group input {
  margin-right: 10px;
}

.report-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.report-preview {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.report-preview h3 {
  margin-bottom: 15px;
  color: #495057;
  font-size: 18px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.preview-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: #e9ecef;
  border-radius: 4px;
  color: #6c757d;
}

@media (max-width: 768px) {
  .report-generator-container {
    padding: 20px;
  }
  
  .report-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
/* Document preview modal */
.document-preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.document-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.document-preview-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 90%;
  max-height: 800px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.document-preview-header h3 {
  margin: 0;
  color: #333;
}

.close-preview-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #6c757d;
  cursor: pointer;
  padding: 0 5px;
}

.document-preview-body {
  flex: 1 1;
  overflow: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
}

.pdf-preview {
  width: 100%;
  height: 100%;
  border: none;
}

.image-preview {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.unsupported-preview {
  text-align: center;
  padding: 30px;
}

.download-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #4a6cf7;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.download-link:hover {
  background-color: #3a5ce5;
}

.document-preview-footer {
  padding: 15px 20px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Document actions */
.document-actions {
  display: flex;
  gap: 10px;
}

.download-document-btn {
  padding: 8px 15px;
  background-color: transparent;
  color: #4a6cf7;
  border: 1px solid #4a6cf7;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-document-btn:hover {
  background-color: #eef1ff;
}

/* Discrepancy impact */
.discrepancy-impact {
  margin-top: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 4px solid #6c757d;
}

.impact-label {
  font-size: 12px;
  color: #6c757d;
  margin-right: 5px;
  font-weight: 500;
}

.impact-value {
  color: #495057;
}

/* Enhanced discrepancy highlighting */
.discrepancy-item.major {
  border-left-color: #dc3545;
  background-color: #fff8f8;
}

.discrepancy-item.minor {
  border-left-color: #ffc107;
  background-color: #fffcf5;
}

/* Print styles for document preview */
@media print {
  .document-preview-modal {
    display: none;
  }
}
/* Enhanced Verification Result Display Styles */

/* Discrepancy summary */
.discrepancy-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 20px;
}

.discrepancy-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.total-count {
  font-size: 36px;
  font-weight: bold;
  color: #dc3545;
}

.count-label {
  font-size: 14px;
  color: #6c757d;
}

.discrepancy-breakdown {
  display: flex;
  gap: 20px;
}

.discrepancy-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
}

.discrepancy-type.major {
  background-color: #f8d7da;
}

.discrepancy-type.minor {
  background-color: #fff3cd;
}

.type-count {
  font-size: 24px;
  font-weight: bold;
}

.discrepancy-type.major .type-count {
  color: #721c24;
}

.discrepancy-type.minor .type-count {
  color: #856404;
}

.type-label {
  font-size: 14px;
  font-weight: 500;
}

.discrepancy-type.major .type-label {
  color: #721c24;
}

.discrepancy-type.minor .type-label {
  color: #856404;
}

.major-discrepancies,
.minor-discrepancies {
  margin-bottom: 30px;
}

.major-discrepancies h4,
.minor-discrepancies h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.major-discrepancies h4 {
  color: #721c24;
}

.minor-discrepancies h4 {
  color: #856404;
}

.discrepancy-explanation {
  margin-bottom: 15px;
  color: #6c757d;
  font-size: 14px;
}

/* Evidence links */
.discrepancy-evidence {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #e9ecef;
}

.evidence-label {
  display: block;
  font-weight: 500;
  color: #495057;
  margin-bottom: 10px;
}

.evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.evidence-link-btn {
  padding: 8px 12px;
  background-color: #e7f5ff;
  color: #1971c2;
  border: 1px solid #a5d8ff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.evidence-link-btn:hover {
  background-color: #d0ebff;
}

/* Document evidence badge */
.document-evidence-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  background-color: #e7f5ff;
  color: #1971c2;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.document-item.evidence {
  border-left: 4px solid #1971c2;
}

.view-document-btn.evidence {
  background-color: #1971c2;
}

.view-document-btn.evidence:hover {
  background-color: #155592;
}

/* Evidence and supporting document descriptions */
.evidence-description,
.supporting-description {
  margin-bottom: 15px;
  color: #6c757d;
  font-size: 14px;
}

/* Enhanced document preview with annotations */
.document-preview-modal.enhanced .document-preview-content {
  max-width: 1200px;
}

.document-preview-body.with-annotations {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}

.document-viewer {
  position: relative;
  height: 100%;
  overflow: auto;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-annotations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.annotation-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.annotation-marker.MAJOR {
  background-color: rgba(220, 53, 69, 0.8);
  box-shadow: 0 0 0 2px white, 0 0 5px rgba(0, 0, 0, 0.3);
}

.annotation-marker.MINOR {
  background-color: rgba(255, 193, 7, 0.8);
  box-shadow: 0 0 0 2px white, 0 0 5px rgba(0, 0, 0, 0.3);
}

.marker-icon {
  color: white;
  font-weight: bold;
}

.annotations-panel {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  overflow-y: auto;
  max-height: 100%;
}

.annotations-panel h4 {
  margin-bottom: 15px;
  color: #495057;
  font-size: 16px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

.annotations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.annotation-item {
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  border-left: 4px solid #6c757d;
}

.annotation-item.MAJOR {
  border-left-color: #dc3545;
}

.annotation-item.MINOR {
  border-left-color: #ffc107;
}

.annotation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.annotation-type {
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.annotation-item.MAJOR .annotation-type {
  background-color: #f8d7da;
  color: #721c24;
}

.annotation-item.MINOR .annotation-type {
  background-color: #fff3cd;
  color: #856404;
}

.annotation-page {
  font-size: 12px;
  color: #6c757d;
}

.annotation-content {
  margin-bottom: 8px;
  color: #212529;
}

.annotation-discrepancy {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #e9ecef;
  font-size: 12px;
}

.discrepancy-label {
  font-weight: 500;
  color: #495057;
  margin-right: 5px;
}

.discrepancy-field {
  color: #dc3545;
}

/* Tab button with discrepancies */
.tab-button.has-discrepancies {
  color: #dc3545;
}

.tab-button.has-discrepancies.active {
  color: #dc3545;
  border-bottom-color: #dc3545;
}

/* Responsive styles */
@media (max-width: 768px) {
  .discrepancy-summary {
    flex-direction: column;
    gap: 15px;
  }
  
  .document-preview-body.with-annotations {
    grid-template-columns: 1fr;
  }
  
  .annotations-panel {
    max-height: 300px;
  }
}
/* Enhanced document preview styles */
.document-annotations {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.document-annotations h4 {
  margin-bottom: 10px;
  color: #495057;
}

.annotations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.annotation-item {
  padding: 10px;
  background-color: #fff;
  border-radius: 4px;
  border-left: 4px solid #ffc107;
  display: flex;
  align-items: center;
}

.annotation-item.major {
  border-left-color: #dc3545;
}

.annotation-item.minor {
  border-left-color: #ffc107;
}

.annotation-severity {
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 10px;
}

.annotation-severity.major {
  background-color: #dc3545;
  color: white;
}

.annotation-severity.minor {
  background-color: #ffc107;
  color: #212529;
}

.annotation-description {
  font-size: 14px;
  color: #495057;
}

/* Enhanced discrepancy highlighting */
.discrepancy-evidence {
  margin-top: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.evidence-label {
  display: block;
  font-size: 14px;
  color: #495057;
  margin-bottom: 8px;
}

.evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.evidence-link-btn {
  padding: 6px 12px;
  background-color: #4a6cf7;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.evidence-link-btn:hover {
  background-color: #3a5ce5;
}

.document-evidence-badge {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 8px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.view-document-btn.evidence {
  background-color: #dc3545;
}

.view-document-btn.evidence:hover {
  background-color: #c82333;
}

/* Discrepancy impact styling */
.discrepancy-impact {
  margin-top: 10px;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #6c757d;
}

.impact-label {
  font-size: 12px;
  color: #6c757d;
  margin-right: 5px;
}

.impact-value {
  font-size: 14px;
  color: #495057;
}

/* Discrepancy summary styling */
.discrepancy-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.discrepancy-count {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.total-count {
  font-size: 36px;
  font-weight: bold;
  color: #dc3545;
}

.count-label {
  font-size: 14px;
  color: #6c757d;
}

.discrepancy-breakdown {
  display: flex;
  gap: 15px;
}

.discrepancy-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
}

.discrepancy-type.major {
  background-color: #f8d7da;
}

.discrepancy-type.minor {
  background-color: #fff3cd;
}

.type-count {
  font-size: 24px;
  font-weight: bold;
}

.type-count.major {
  color: #721c24;
}

.type-count.minor {
  color: #856404;
}

.type-label {
  font-size: 14px;
  font-weight: 500;
}

.type-label.major {
  color: #721c24;
}

.type-label.minor {
  color: #856404;
}

.discrepancy-explanation {
  margin-bottom: 15px;
  color: #6c757d;
  font-style: italic;
}
/* Additional Information Request Styles */
.info-requests-container {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.info-requests-container h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
}

.info-requests-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-request-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.info-request-item.pending {
  border-left-color: #ffc107;
}

.info-request-item.responded {
  border-left-color: #28a745;
}

.info-request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.info-request-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
}

.request-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.request-status.pending {
  background-color: #fff3cd;
  color: #856404;
}

.request-status.responded {
  background-color: #d4edda;
  color: #155724;
}

.info-request-details {
  margin-bottom: 20px;
}

.request-description {
  margin-bottom: 15px;
  color: #495057;
  line-height: 1.5;
}

.request-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6c757d;
}

.due-date {
  font-weight: 500;
  color: #dc3545;
}

.info-request-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.info-request-response {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.info-request-response h4 {
  margin-bottom: 15px;
  color: #28a745;
  font-size: 16px;
}

.response-item {
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.response-item:last-child {
  border-bottom: none;
}

.response-label {
  width: 150px;
  font-weight: 500;
  color: #495057;
}

.response-value {
  flex: 1 1;
  color: #212529;
}

.response-meta {
  margin-top: 15px;
  font-size: 14px;
  color: #6c757d;
  text-align: right;
}

.no-requests-message {
  padding: 30px;
  text-align: center;
  color: #6c757d;
  background-color: #fff;
  border-radius: 8px;
  border: 1px dashed #ced4da;
}

/* Responsive styles */
@media (max-width: 768px) {
  .info-requests-container {
    padding: 15px;
  }
  
  .info-request-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .request-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .response-item {
    flex-direction: column;
  }
  
  .response-label {
    width: 100%;
    margin-bottom: 5px;
  }
}
/* Verification Query Response Styles */
.queries-container {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.queries-container h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
}

.queries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.query-item {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border-left: 4px solid #17a2b8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.query-item.pending {
  border-left-color: #17a2b8;
}

.query-item.answered {
  border-left-color: #28a745;
}

.query-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.query-source {
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-icon {
  font-size: 20px;
}

.source-name {
  font-weight: 500;
  color: #495057;
}

.query-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.query-status.pending {
  background-color: #d1ecf1;
  color: #0c5460;
}

.query-status.answered {
  background-color: #d4edda;
  color: #155724;
}

.query-content {
  margin-bottom: 20px;
}

.query-message {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
}

.query-message p {
  margin: 0;
  color: #212529;
  line-height: 1.5;
}

.query-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6c757d;
}

.query-priority {
  font-weight: 500;
}

.query-priority.high {
  color: #dc3545;
}

.query-response-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.query-response {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.query-response h4 {
  margin-bottom: 15px;
  color: #28a745;
  font-size: 16px;
}

.response-text {
  color: #212529;
  line-height: 1.5;
  white-space: pre-wrap;
}

.no-queries-message {
  padding: 30px;
  text-align: center;
  color: #6c757d;
  background-color: #fff;
  border-radius: 8px;
  border: 1px dashed #ced4da;
}

/* Responsive styles */
@media (max-width: 768px) {
  .queries-container {
    padding: 15px;
  }
  
  .query-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .query-meta {
    flex-direction: column;
    gap: 5px;
  }
}
/* Verification Report Generator Styles */
.report-generator-container {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.report-generator-container h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
}

.report-generator-container h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}

.report-warning {
  padding: 10px 15px;
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  color: #856404;
  border-radius: 4px;
  margin-bottom: 20px;
}

.report-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 30px;
}

.option-section {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
  color: #495057;
}

.report-actions {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
}

.report-preview {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.preview-placeholder {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 4px;
  border: 1px dashed #ced4da;
  color: #6c757d;
}

/* Responsive styles */
@media (max-width: 768px) {
  .report-options {
    grid-template-columns: 1fr;
  }
}
/* Verification Query Response Styles */
.queries-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.queries-container h2 {
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
  text-align: center;
}

.query-status-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.query-count {
  display: flex;
  flex-direction: column;
}

.total-count {
  font-size: 18px;
  font-weight: 500;
  color: #495057;
}

.pending-count {
  font-size: 14px;
  color: #ffc107;
  font-weight: 500;
}

.query-filter select {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  color: #495057;
}

.queries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.query-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.query-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.query-item.pending {
  border-left: 4px solid #ffc107;
}

.query-item.answered {
  border-left: 4px solid #28a745;
}

.query-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.query-source {
  display: flex;
  align-items: center;
}

.source-icon {
  font-size: 24px;
  margin-right: 10px;
}

.source-name {
  font-weight: 500;
  color: #495057;
}

.query-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.query-status.pending {
  background-color: #fff3cd;
  color: #856404;
}

.query-status.answered {
  background-color: #d4edda;
  color: #155724;
}

.query-content {
  margin-bottom: 20px;
}

.query-message {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  margin-bottom: 10px;
}

.query-message p {
  margin: 0;
  color: #212529;
  line-height: 1.5;
}

.query-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6c757d;
}

.query-priority {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.query-priority.high {
  background-color: #f8d7da;
  color: #721c24;
}

.query-response-form {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.query-response-form .form-group {
  margin-bottom: 15px;
}

.query-response-form .form-group.has-error textarea {
  border-color: #dc3545;
}

.query-response-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #495057;
}

.query-response-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
}

.query-response-form textarea:focus {
  border-color: #4a6cf7;
  outline: none;
}

.query-response-form .error-text {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}

.query-response-form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.query-response {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.query-response h4 {
  margin-bottom: 10px;
  color: #495057;
  font-size: 16px;
}

.response-text {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  margin-bottom: 10px;
  color: #212529;
  line-height: 1.5;
}

.response-meta {
  font-size: 12px;
  color: #6c757d;
  text-align: right;
}

.no-queries-message {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed #ced4da;
}

.no-queries-message p {
  color: #6c757d;
  margin-bottom: 10px;
}

.query-help-text {
  color: #6c757d;
  font-style: italic;
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .queries-container {
    padding: 20px;
  }
  
  .query-status-summary {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .query-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .query-status {
    align-self: flex-start;
  }
  
  .query-response-form .form-actions {
    flex-direction: column;
  }
  
  .query-response-form .form-actions button {
    width: 100%;
  }
}
/* Secure Messaging Component Styles */
.secure-messaging-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 500px;
}

.secure-messaging-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 15px;
}

.secure-messaging-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
}

.connection-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.connection-status.connected {
  background-color: #d4edda;
  color: #155724;
}

.connection-status.disconnected {
  background-color: #f8d7da;
  color: #721c24;
}

.secure-messaging-messages {
  flex: 1 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.no-messages {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #6c757d;
  font-style: italic;
}

.message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
  word-break: break-word;
}

.message.sent {
  align-self: flex-end;
  background-color: #e7f5ff;
  border-bottom-right-radius: 0;
}

.message.received {
  align-self: flex-start;
  background-color: #f0f4ff;
  border-bottom-left-radius: 0;
}

.message-content {
  margin-bottom: 5px;
}

.message-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6c757d;
}

.integrity-warning {
  margin-top: 5px;
  padding: 3px 6px;
  background-color: #fff3cd;
  border-radius: 4px;
  font-size: 12px;
  color: #856404;
  display: flex;
  align-items: center;
}

.secure-messaging-input {
  display: flex;
  gap: 10px;
}

.secure-messaging-input textarea {
  flex: 1 1;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  resize: none;
  height: 80px;
}

.secure-messaging-input textarea:focus {
  border-color: #4a6cf7;
  outline: none;
}

.secure-messaging-input button {
  padding: 0 20px;
  background-color: #4a6cf7;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.secure-messaging-input button:hover {
  background-color: #3a5ce5;
}

.secure-messaging-input button:disabled {
  background-color: #a5b4fc;
  cursor: not-allowed;
}

.secure-messaging-footer {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.encryption-notice {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6c757d;
}

.lock-icon {
  margin-right: 5px;
}

.secure-messaging-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  background-color: #f8f9fa;
  border-radius: 8px;
  color: #6c757d;
}

.secure-messaging-error {
  padding: 15px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .secure-messaging-container {
    padding: 15px;
    height: 400px;
  }
  
  .secure-messaging-input {
    flex-direction: column;
  }
  
  .secure-messaging-input textarea {
    height: 60px;
  }
  
  .secure-messaging-input button {
    padding: 10px;
  }
}
/* LinkedIn URL Input Styles */
.linkedin-url-input {
  margin-bottom: 30px;
}

.input-with-button {
  display: flex;
  gap: 10px;
}

.input-with-button input {
  flex: 1 1;
}

.url-format-help {
  margin-top: 10px;
}

.help-toggle {
  background: none;
  border: none;
  color: #4a6cf7;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.help-toggle:hover {
  color: #3a5ce5;
}

.url-guidance {
  margin-top: 15px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  font-size: 14px;
}

.url-guidance h4 {
  margin-bottom: 10px;
  color: #495057;
}

.url-guidance ul {
  padding-left: 20px;
  margin: 10px 0;
}

.url-guidance li {
  margin-bottom: 5px;
}

.guidance-note {
  margin-top: 10px;
  padding: 10px;
  background-color: #e7f5ff;
  border-radius: 4px;
  border-left: 4px solid #4dabf7;
}

.validation-result {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
}

.validation-result.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.validation-result.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.result-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-icon {
  background-color: #28a745;
  color: white;
}

.success-icon::before {
  content: "✓";
  font-weight: bold;
}

.error-icon {
  background-color: #dc3545;
  color: white;
}

.error-icon::before {
  content: "✕";
  font-weight: bold;
}

.validation-result p {
  margin: 0;
}

/* Responsive styles for LinkedIn URL input */
@media (max-width: 768px) {
  .input-with-button {
    flex-direction: column;
  }
  
  .input-with-button button {
    align-self: flex-start;
  }
}
/* LinkedIn Verification Result Display Styles */
.linkedin-verification-result {
  margin-top: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.linkedin-verification-result h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 18px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
}

/* LinkedIn result tabs */
.linkedin-result-tabs {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 20px;
  overflow-x: auto;
}

/* LinkedIn result content */
.linkedin-result-content {
  margin-bottom: 20px;
  min-height: 200px;
}

/* LinkedIn verification summary */
.linkedin-verification-summary {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.linkedin-profile-link {
  margin-top: 10px;
}

.linkedin-url {
  display: inline-flex;
  align-items: center;
  color: #0077b5;
  text-decoration: none;
  font-weight: 500;
}

.linkedin-url i {
  margin-right: 5px;
  font-size: 18px;
}

.linkedin-url:hover {
  text-decoration: underline;
}

/* Confidence score visualization */
.confidence-score-container {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.confidence-score-visualization {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.confidence-meter {
  flex-grow: 1;
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
}

.confidence-level {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
}

.confidence-percentage {
  font-size: 18px;
  font-weight: bold;
  color: #495057;
  width: 50px;
  text-align: right;
}

.confidence-level-indicator {
  margin-bottom: 15px;
}

.confidence-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

/* LinkedIn profile data */
.linkedin-profile-data {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 1px solid #e9ecef;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h4 {
  margin-bottom: 5px;
  color: #212529;
}

.profile-headline {
  color: #495057;
  margin-bottom: 5px;
}

.profile-location {
  color: #6c757d;
  font-size: 14px;
}

.profile-summary {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.history-item {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.history-header {
  margin-bottom: 10px;
}

.history-header h5 {
  margin-bottom: 5px;
  color: #212529;
}

.company-name,
.degree-info {
  color: #495057;
  font-weight: 500;
}

.history-dates {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
}

.history-location {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
}

.history-description {
  color: #495057;
  font-size: 14px;
  white-space: pre-line;
}

.education-activities {
  color: #495057;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Connection analysis */
.connection-analysis {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.employment-connections,
.education-connections {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.connection-support {
  margin-top: 15px;
}

.support-level {
  margin-bottom: 15px;
}

.support-label {
  font-weight: 500;
  color: #495057;
  margin-right: 10px;
}

.support-value {
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: 500;
  font-size: 14px;
  color: white;
}

.support-value.strong {
  background-color: #28a745;
}

.support-value.moderate {
  background-color: #17a2b8;
}

.support-value.weak {
  background-color: #ffc107;
  color: #212529;
}

.support-value.none {
  background-color: #6c757d;
}

.connections-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.connection-item {
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.connection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.connection-count {
  font-size: 14px;
  color: #6c757d;
}

.seniority-distribution {
  margin-top: 15px;
}

.seniority-bar {
  display: flex;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.seniority-level {
  height: 100%;
}

.seniority-level.entry {
  background-color: #4dabf7;
}

.seniority-level.mid {
  background-color: #15aabf;
}

.seniority-level.senior {
  background-color: #3b5bdb;
}

.seniority-level.executive {
  background-color: #364fc7;
}

.seniority-legend {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6c757d;
}

.legend-item {
  display: flex;
  align-items: center;
}

.legend-item::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
}

.legend-item.entry::before {
  background-color: #4dabf7;
}

.legend-item.mid::before {
  background-color: #15aabf;
}

.legend-item.senior::before {
  background-color: #3b5bdb;
}

.legend-item.executive::before {
  background-color: #364fc7;
}

.primary-organization {
  font-size: 14px;
  color: #495057;
  margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .linkedin-result-tabs {
    flex-wrap: wrap;
  }
  
  .tab-button {
    flex-grow: 1;
    text-align: center;
  }
  
  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .profile-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .connection-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .connection-count {
    margin-top: 5px;
  }
}
/* LinkedIn report options */
.report-options .linkedin-option {
  margin-left: 20px;
}

.report-options h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

/* Multiple degrees styling */
.degree-entry {
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f8f9fa;
}

.degree-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.degree-header h4 {
  margin: 0;
  color: #495057;
  font-size: 1.1rem;
}

.remove-degree-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.remove-degree-btn:hover {
  background-color: #c82333;
}

.add-degree-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}

.add-degree-btn:hover {
  background-color: #218838;
}
/* Multiple employment styling */
.employment-entry {
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f8f9fa;
}

.employment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.employment-header h3 {
  margin: 0;
  color: #495057;
  font-size: 1.2rem;
}

.remove-employment-btn {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.remove-employment-btn:hover {
  background-color: #c82333;
}

.add-employment-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin: 20px 0;
}

.add-employment-btn:hover {
  background-color: #218838;
}

.demo-report-generator {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.demo-header {
  text-align: center;
  margin-bottom: 30px;
}

.demo-header h2 {
  color: #007bff;
  margin-bottom: 10px;
}

.demo-form {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  grid-gap: 20px;
  gap: 20px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.generate-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

.generate-button:hover {
  background: #0056b3;
}

.generate-button:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

.demo-report-preview {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.report-header {
  background: #007bff;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-button {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.download-button:hover {
  background: rgba(255,255,255,0.3);
}

.report-summary {
  padding: 20px;
}

.summary-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 15px;
  gap: 15px;
  margin-top: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 4px;
}

.label {
  font-weight: 600;
  color: #666;
}

.status.cleared {
  color: #28a745;
  font-weight: bold;
}

.risk.low {
  color: #28a745;
  font-weight: bold;
}

.score {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}

.verification-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 15px;
  gap: 15px;
}

.section-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 6px;
}

.section-icon {
  font-size: 20px;
}

.section-name {
  flex: 1 1;
  font-weight: 600;
}

.section-status.verified {
  color: #28a745;
  font-weight: bold;
}

.section-status.clear {
  color: #28a745;
  font-weight: bold;
}

@media (max-width: 768px) {
  .demo-form {
    grid-template-columns: 1fr;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  .verification-sections {
    grid-template-columns: 1fr;
  }
}

