* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --primary-hover: #0052a3;
  --background: #f5f5f5;
  --surface: #ffffff;
  --border: #e0e0e0;
  --text-primary: #333333;
  --text-secondary: #666666;
  --shadow: rgba(0, 0, 0, 0.1);
  --highlight-color: rgba(255, 235, 59, 0.4);
  --redaction-color: #000000;
  --search-highlight: rgba(255, 152, 0, 0.5);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}
