body {
    background-color: #f8f9fa;
  }
  .mic-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f3eefa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .mic-button {
    background-color: #dc3545;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .mic-container.listening {
    animation: pulse 1s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.6);
    }
    70% {
      box-shadow: 0 0 0 30px rgba(220, 53, 69, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
  }
  
  #speechWrapper {
    transition: all 0.3s ease;
  }
  
  
 /* .mic-button:hover {
    background-color: #c82333;
  }*/
  .transcript-box {
    min-height: 200px;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 16px;
    color: #212529;
  }

  .fix-data {
    background: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-box {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  #textInputSection {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #textInputSection .inputGroup {
    display: flex;
    flex-direction: column;
  }
  
  #textInputSection #new-product {
    align-self: flex-end;
    margin-top: 10px;
  }
  