      :where([class^="ri-"])::before { content: "\f3c2"; }
      body {
      font-family: 'Noto Sans KR', sans-serif;
      }
      @keyframes fadeInUp {
      from {
      opacity: 0;
      transform: translateY(20px);
      }
      to {
      opacity: 1;
      transform: translateY(0);
      }
      }
      .fade-in-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      }
      .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
      }
      .delay-100 {
      animation-delay: 0.1s;
      }
      .delay-200 {
      animation-delay: 0.2s;
      }
      .delay-300 {
      animation-delay: 0.3s;
      }
      .chat-container::-webkit-scrollbar {
      width: 6px;
      }
      .chat-container::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.1);
      border-radius: 6px;
      }
      .chat-container::-webkit-scrollbar-track {
      background-color: transparent;
      }
      .recording-animation {
      animation: pulse 1.5s infinite;
      }
      @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
      }
      @media (max-width: 1024px) {
      .main-content {
      flex-direction: column;
      }
      .chat-section, .result-section {
      width: 100%;
      margin-bottom: 1.5rem;
      }
      
     
      }
      .text-primary {
  	  min-height:30px;
	  }