/* Button styles */
.full-width {
    width: 100%;
  }
  
  /* Container layouts */
  .flex-container {
    display: flex;
    flex: 1;
  }
  
  .space-between {
    justify-content: space-between;
  }
  
  .left-aligned {
    justify-content: left;
  }
  
  /* Margins and spacing */
  .icon-margin {
    margin-left: 5px;
    margin-bottom: 0px;
  }
  
  .label-margin {
    margin-top: 2px;
  }
  
  .switch-margin-left {
    margin-left: 10px;
  }
  
  /* Textarea styling */
  .textarea-container {
    margin-top: 5px;
  }
  
  .prompt-textarea {
    width: 98%;
    max-height: 120px;
    min-height: 100px;
    overflow: auto;
  }