@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

body {
  background-color: #f4f6f9;
  font-family: Inter, Source Sans Pro, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif !important;
}

.main-sidebar {
  background: linear-gradient(#1a1f36 0%, #141829 100%) !important;
}

.brand-link {
  background: #ffffff0d !important;
  border-bottom: 1px solid #ffffff14 !important;
  padding: 16px 15px !important;
}

.brand-text {
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.brand-text span {
  color: #4e9af1;
}

.sidebar .nav-link {
  color: #ffffffa6 !important;
  border-radius: 8px !important;
  margin: 2px 8px !important;
  padding: 10px 12px !important;
  transition: all .2s !important;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
  color: #fff !important;
  background: #4e9af126 !important;
}

.sidebar .nav-link.active {
  border-left: 3px solid #4e9af1 !important;
}

.sidebar .nav-link .nav-icon {
  width: 20px;
  color: #fff6 !important;
}

.sidebar .nav-link:hover .nav-icon, .sidebar .nav-link.active .nav-icon {
  color: #4e9af1 !important;
}

.nav-header {
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #ffffff4d !important;
  padding: 14px 20px 4px !important;
  font-size: .65rem !important;
  font-weight: 700 !important;
}

.main-header.navbar {
  background: #fff !important;
  border-bottom: 1px solid #e9ecef !important;
  box-shadow: 0 1px 8px #0000000f !important;
}

.card {
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px #0000000f !important;
}

.card-header {
  color: #1a1f36;
  font-weight: 600;
  background: #fff !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-radius: 12px 12px 0 0 !important;
  padding: 16px 20px !important;
}

.card-body {
  padding: 20px !important;
}

.info-box {
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px #0000000f !important;
}

.info-box-icon {
  border-radius: 12px 0 0 12px !important;
  width: 70px !important;
}

.info-box-number {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}

.btn {
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: all .2s !important;
}

.btn-primary {
  background: #4e9af1 !important;
  border-color: #4e9af1 !important;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #3a87e0 !important;
  border-color: #3a87e0 !important;
  box-shadow: 0 4px 12px #4e9af14d !important;
}

.btn-danger:hover, .btn-success:hover {
  transform: translateY(-1px);
}

.table thead th {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #6c757d;
  background: #f8f9fa;
  border-top: none;
  border-bottom: 2px solid #e9ecef;
  padding: 12px 16px;
  font-size: .77rem;
  font-weight: 600;
}

.table tbody td {
  vertical-align: middle;
  color: #3d4566;
  border-color: #f0f2f5;
  padding: 13px 16px;
}

.table tbody tr:hover td {
  background: #f8fbff;
}

.upload-zone {
  text-align: center;
  cursor: pointer;
  background: #fafcff;
  border: 2px dashed #c8d6e5;
  border-radius: 12px;
  padding: 48px 32px;
  transition: all .25s;
}

.upload-zone:hover, .upload-zone.drag-over {
  background: #f0f6ff;
  border-color: #4e9af1;
}

.upload-zone .upload-icon {
  color: #c8d6e5;
  margin-bottom: 12px;
  font-size: 3rem;
  transition: color .2s;
}

.upload-zone:hover .upload-icon, .upload-zone.drag-over .upload-icon {
  color: #4e9af1;
}

.upload-zone h5 {
  color: #3d4566;
  margin-bottom: 6px;
  font-weight: 600;
}

.upload-zone p {
  color: #8898aa;
  margin: 0;
  font-size: .875rem;
}

.chat-messages {
  scroll-behavior: smooth;
  background: #f8f9fc;
  border-radius: 0;
  height: 460px;
  padding: 20px;
  overflow-y: auto;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #c8d6e5;
  border-radius: 4px;
}

.chat-bubble {
  max-width: 75%;
  margin-bottom: 16px;
}

.chat-bubble.user {
  margin-left: auto;
}

.chat-bubble.user .bubble-inner {
  color: #fff;
  background: linear-gradient(135deg, #4e9af1, #3a87e0);
  border-radius: 18px 18px 4px;
  padding: 12px 16px;
  font-size: .9rem;
}

.chat-bubble.assistant .bubble-inner {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 18px 18px 18px 4px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000000d;
}

.chat-input-area {
  background: #fff;
  border-top: 1px solid #e9ecef;
  border-radius: 0 0 12px 12px;
  padding: 16px 20px;
}

.chat-input-area textarea {
  resize: none;
  font-size: .9rem;
  transition: border-color .2s;
  border: 1px solid #dde2ec !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
}

.chat-input-area textarea:focus {
  border-color: #4e9af1 !important;
  box-shadow: 0 0 0 3px #4e9af11f !important;
}

.answer-value {
  color: #1a1f36;
  font-size: 2rem;
  font-weight: 700;
}

.answer-unit {
  color: #6c757d;
  margin-left: 4px;
  font-size: 1rem;
}

.confidence-bar {
  background: #e9ecef;
  border-radius: 3px;
  height: 6px;
  margin-top: 4px;
  overflow: hidden;
}

.confidence-fill {
  border-radius: 3px;
  height: 100%;
  transition: width .8s;
}

.source-item {
  color: #4a5568;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: .83rem;
  display: flex;
}

.source-item i {
  color: #4e9af1;
  flex-shrink: 0;
  width: 14px;
  margin-top: 2px;
}

.site-hero {
  color: #fff;
  background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
  border-radius: 16px;
  margin-bottom: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.site-hero:before {
  content: "";
  background: #4e9af11f;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  position: absolute;
  top: -60px;
  right: -60px;
}

.site-hero h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
}

.site-hero p {
  color: #ffffffa6;
  font-size: .95rem;
}

.site-input-group .form-control {
  color: #fff !important;
  background: #ffffff1a !important;
  border: 2px solid #fff3 !important;
  border-radius: 10px 0 0 10px !important;
  height: 52px !important;
  font-size: 1rem !important;
}

.site-input-group .form-control::placeholder {
  color: #fff6;
}

.site-input-group .form-control:focus {
  box-shadow: none !important;
  background: #ffffff26 !important;
  border-color: #4e9af1 !important;
}

.site-input-group .btn-go {
  color: #fff;
  height: 52px;
  padding: 0 28px;
  font-weight: 600;
  background: #4e9af1 !important;
  border-color: #4e9af1 !important;
  border-radius: 0 10px 10px 0 !important;
}

.site-card {
  cursor: pointer;
  color: inherit;
  background: #fff;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  padding: 14px 18px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  border: 1px solid #e9ecef !important;
  border-radius: 10px !important;
}

.site-card:hover {
  color: inherit;
  background: #f0f6ff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #4e9af11f;
  border-color: #4e9af1 !important;
}

.site-icon {
  color: #fff;
  background: linear-gradient(135deg, #4e9af1, #2d7fe0);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  display: flex;
}

.breadcrumb {
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.breadcrumb-item a {
  color: #4e9af1;
  text-decoration: none;
}

.main-footer {
  color: #8898aa !important;
  background: #fff !important;
  border-top: 1px solid #e9ecef !important;
  font-size: .82rem !important;
}

.check-row {
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: .82rem;
  display: flex;
}

.check-pass {
  color: #28a745;
}

.check-fail {
  color: #dc3545;
}

.check-warn {
  color: #ffc107;
}

.empty-state {
  text-align: center;
  color: #8898aa;
  padding: 48px 20px;
}

.empty-state i {
  margin-bottom: 12px;
  font-size: 3rem;
  display: block;
}

.empty-state h6 {
  color: #3d4566;
  margin-bottom: 6px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-hero {
    padding: 32px 24px;
  }

  .site-hero h2 {
    font-size: 1.4rem;
  }

  .chat-messages {
    height: 340px;
  }

  .chat-bubble {
    max-width: 92%;
  }

  .answer-value {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/