/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* Global styles for Codai Scout */

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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  background: #f9f9f9;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

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

/* Animation for streaming cursor */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Button hover effects */
button:hover:not(:disabled) {
  opacity: 0.9;
}

button:active:not(:disabled) {
  transform: translateY(1px);
}

/* Hide Next.js development indicator (route static icon) - AGGRESSIVE HIDING */
#__next-build-watcher,
[data-nextjs-route-announcer],
nextjs-portal,
#__next-route-announcer,
.__next-route-indicator,
[class*="__next"][class*="indicator"],
[id*="__next"][id*="indicator"],
body > div[style*="position:fixed"],
body > div[style*="position: fixed"],
div[style*="position:fixed"][style*="bottom"],
div[style*="position: fixed"][style*="bottom"],
div[style*="z-index: 9000"],
div[style*="z-index:9000"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Input focus styles */
textarea:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

