/* BSE x Zid ERP Integration Dashboard Styles */

/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Glass morphism effect */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Table styling */
.table-row:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Tab navigation */
.tab {
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.tab.active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: bold;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Badge styles */
.badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.badge-success {
  background: #10b981;
}

.badge-warning {
  background: #f59e0b;
}

.badge-error {
  background: #ef4444;
}

/* Button styles */
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

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

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

.btn-success {
  background: #10b981;
  color: white;
}

.btn-success:hover {
  background: #059669;
}

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

.btn-danger:hover {
  background: #dc2626;
}

/* Disabled button state */
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
