/* Additional app-specific styles */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.main-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.nav-link.active {
  font-weight: 500;
  color: #0d6efd;
}

/* Chat message styles */
.user-message {
  background-color: #e9ecef;
  padding: 10px 15px;
  border-radius: 15px;
  margin-bottom: 10px;
  max-width: 80%;
  align-self: flex-start;
}

.assistant-message {
  background-color: #d2f4ea;
  padding: 10px 15px;
  border-radius: 15px;
  margin-bottom: 10px;
  max-width: 80%;
  align-self: flex-end;
  margin-left: auto;
}

/* Log viewer styles */
.log-viewer {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Markdown content styles */
.markdown-content p,
.message .markdown-content p {
  margin-bottom: 0.75rem;
}

.markdown-content p:last-child,
.message .markdown-content p:last-child {
  margin-bottom: 0;
}

.markdown-content ul,
.markdown-content ol {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.markdown-content code {
  background-color: rgba(0, 0, 0, 0.07);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.markdown-content pre {
  background-color: rgba(0, 0, 0, 0.07);
  padding: 0.5rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 0.5rem 0;
}

.markdown-content pre code {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.markdown-content h1 { font-size: 1.5em; }
.markdown-content h2 { font-size: 1.4em; }
.markdown-content h3 { font-size: 1.3em; }
.markdown-content h4 { font-size: 1.2em; }
.markdown-content h5 { font-size: 1.1em; }
.markdown-content h6 { font-size: 1em; }

/* Feature icon sizing */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-highlight {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #007bff !important;
  z-index: 1;
  position: relative;
}

@media (max-width: 992px) {
  .pricing-highlight {
    transform: scale(1);
    margin: 1rem 0;
  }
}

/* Add your custom styles here */

/* Refresh button spin animation */
@keyframes spin-refresh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin-refresh {
  animation: spin-refresh 1s linear infinite;
}

/* Session list styles */
.session-item.active {
  background-color: #e9ecef;
  border-left: 4px solid #007bff;
}

.session-item:hover:not(.active) {
  background-color: #f8f9fa;
}
