

/* ----------- STARTING: /app/shared/assistant/assistant.css */

.assistant-container {
    margin-left: 2em;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    height: 100%; /* Full height of the viewport */
  }
  
  .assistant-container .top {
    flex: 0 0 auto; /* Prevent stretching; keep natural height */    
    padding: 10px;
  }
  
  .assistant-container .middle {
    flex: 1 1 auto; /* Take up all available space */    
    padding: 10px;
    overflow: auto; /* Add scrolling if content overflows */
  }
  
  .assistant-container .bottom {
    flex: 0 0 auto; /* Prevent stretching; keep natural height */    
    padding: 10px;
  }

  .assistant-header {
    display: flex; /* Enables Flexbox layout */
    justify-content: space-between; /* Positions children at the start and end */
    align-items: center; /* Ensures components are aligned vertically */
    width: 100%; /* Optional: Set container width */
    padding: 10px; /* Optional: Add spacing inside the container */
    box-sizing: border-box; /* Includes padding in width/height calculations */
  }
  
  .assistant-header .start {
    
    /* Optional styles for the start component */
    font-family: Montserrat;
    font-size: 26.99px;
    font-weight: 300;
    line-height: 32.9px;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    padding: 10px;
  }
  
  .assistant-header .end {
    /* Optional styles for the end component */
    
    padding: 10px;
  }
  

  .assistant-top-logo{
    height: 40px;
    width: 200px;   
    background-size: cover;
    background-image: url('/assets/images/assistant-top-logo.gif');   
  }
/* ----------- ENDING: /app/shared/assistant/assistant.css */


/* ----------- STARTING: /app/shared/assistant/assistant-empty/assistant-empty.css */
.assistant-empty-container{
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
}

.assistant-empty-container .logo{
    height: 150px;
    width: 150px;
}

.assistant-empty-container .questions{
    display: flex;
    flex-direction: column;
    gap:10px;
    align-items: center;
    margin-top: 3em;
}

.assistant-empty-container .question{
    color: white;  
    display: flex;
    flex-direction: row; 
    gap: 20px;
    align-items: center;
    padding: 1em;
}

.assistant-empty-container .icon{
    transform: rotate(180deg);
}

/* ----------- ENDING: /app/shared/assistant/assistant-empty/assistant-empty.css */


/* ----------- STARTING: /app/shared/assistant/assistant-history/assistant-history.css */
.assistant-history-container{
    display: flex; /* Enables Flexbox layout */
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-end; /* Align items to the bottom of the container */      
    overflow-y: auto;
}

.assistant-history-container .message-wrapper{
    
    margin-bottom: 2em;
}

.assistant-history-container .message-wrapper:has(.assistant-user-message-container){
    align-self: flex-end;
}

.assistant-history-container .message-wrapper:has(.assistant-message-container){
    align-self: flex-start;
}
/* ----------- ENDING: /app/shared/assistant/assistant-history/assistant-history.css */


/* ----------- STARTING: /app/shared/assistant/assistant-input/assistant-input.css */
.assistant-input-container{
    border-radius: 25px;
    background-color: #2e383b;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: end;
    padding: 5px;    
}

.assistant-input-container .boxed{
    background-color: transparent;
    margin-left: 1em;
}


.assistant-input-container .send-action{
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background-color: white;
    margin:4px;
    cursor: pointer;
    position: relative;
}

.assistant-input-container .send-action .arrow{
    color: black;
}

.assistant-input-container app-textarea{
    flex: 1
}


/* ----------- ENDING: /app/shared/assistant/assistant-input/assistant-input.css */


/* ----------- STARTING: /app/shared/assistant/messages/assistant-message/assistant-message.css */
.assistant-message-container{
    display: flex;
    flex-direction: row;
    gap: 20px
}


.assistant-logo{
    height: 40px;
    width: 40px;   
    background-size: cover;    
}

.assistant-message-container .content{
    flex:1
}

.assistant-message-container .citations{
    margin: 1em 0em;
    padding-top: 1em;    
   
}
.assistant-message-container .citations .app-btn-quaternary{
    color:white !important;
}

.assistant-message-container .actions{
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 10px;
    margin-bottom: 1em;
    
}

.assistant-message-container .actions .circular{
    padding: 7px;

}


/* ----------- ENDING: /app/shared/assistant/messages/assistant-message/assistant-message.css */


/* ----------- STARTING: /app/shared/assistant/messages/assistant-user-message/assistant-user-message.css */
.assistant-user-message-container{
    background-color: #273033;
    border-radius: 50px;
    padding: 1em 2em;
    text-align: right;
}

/* ----------- ENDING: /app/shared/assistant/messages/assistant-user-message/assistant-user-message.css */
