
/* NDA Reminder Box - Fixed bottom left */
.nda-reminder-box {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  right: auto !important;
  z-index: 9998 !important;
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nda-reminder-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-primary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
}

.nda-reminder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-primary);
  color: white;
  border-radius: 6px;
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nda-reminder-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nda-reminder-text strong {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.nda-reminder-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.nda-reminder-logout {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nda-reminder-logout:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
}

@media (max-width: 480px) {
  .nda-reminder-box {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  
  .nda-reminder-content {
    padding: 10px 12px;
  }
  
  .nda-reminder-text strong {
    font-size: 0.8rem;
  }
  
  .nda-reminder-text span {
    font-size: 0.7rem;
  }
}
