@tailwind base;
@tailwind components;
@tailwind utilities;

h1 {
  @apply text-2xl font-bold text-gray-900;
}

h2 {
  @apply text-xl font-bold text-gray-900;
}

h3 {
  @apply text-lg font-bold text-gray-900;
}

h4 {
  @apply text-base font-bold text-gray-900;
}

h5 {
  @apply text-base font-bold text-gray-900;
}

.assistant-message-container * {
  @apply py-2 dark:text-white;
}

.user-message-container * {
  @apply py-2 dark:text-white;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.circular-progress {
  transform: rotate(-90deg);
  transform-origin: 20px 20px;
}

.circular-progress .bg {
  stroke: #ddd;
}

.circular-progress .progress {
  stroke: #4ade80;
  stroke-dasharray: 94.2; /* Adjust based on your circle's radius */
  stroke-dashoffset: 94.2; /* Starts matching the full circumference */
  animation:
    progress-animation 30s linear forwards,
    pulse 2s infinite;
}

@keyframes progress-animation {
  0% {
    stroke-dashoffset: 94.2; /* Start completely empty */
  }
  16.67% {
    stroke-dashoffset: 47.1; /* 50% progress at 5 seconds */
  }
  100% {
    stroke-dashoffset: 9.42; /* Ends at 90% */
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
