#tab-qa {
  display: none;
}

.ai-enhance-zone {
  background: #2a2a3e;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid #3a3a5e;
}

.ai-enhance-label {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #8b92ff;
}

.ai-enhance-label input[type="checkbox"] {
  margin-right: 10px;
}

#enhanceOptions {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
}

#enhanceOptions p {
  font-size: 12px;
  color: #b0b0c0;
  margin: 5px 0;
}

#enhanceOptions label {
  display: block;
  margin: 5px 0;
  color: #d0d0e0;
}

.edit-btn {
  background: #218838 !important;
}

.delete-btn {
  background: #dc3545 !important;
}

#adminModal {
  z-index: 900 !important;
}

#userLogsModal .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}

.user-logs-list {
  list-style: none;
  padding: 0;
}

.user-log-item {
  margin-bottom: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.drag-preview {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  display: none;
  font-weight: 600;
  font-size: 14px;
}

.drag-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 
    0 10px 30px rgba(16, 185, 129, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 14px;
  z-index: 99998;
  animation: dragToastSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes dragToastSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.empty-icon-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.empty-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.empty-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.5;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-create-bulk {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-create-bulk:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-login {
  background: var(--gradient-primary);
  color: white;
}

.btn-login:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}