.panel{
    width:450px;
    padding:15px;
    border-radius: 10px;
    border: 1px solid #C2C2C2;
    background: #FFF;
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
}

.panel-heading{
    padding-bottom:0px
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.chatSection {
    position: absolute;
    bottom: 15px;
    width: 100%;
    left: 0px;
    background-color: #f9f9f9;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.chatSection .input-group {
    display: flex;
    gap: 5px;
}

.chatSection #chatInput {
    flex: 1;
}

.chatSection #voiceBtn {
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatSection #voiceBtn.recording {
    background-color: #dc3545;
    border-color: #dc3545;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.chatSection #sendBtn {
    min-width: 80px;
}

.chatSection #sendBtn:disabled,
.chatSection #voiceBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chatSection #chatInput:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

#chatContainer {
    height: calc(100vh - 250px);
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 20px;
}

.message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.user-message {
    background-color: #1B364F;
    color: white;
    margin-left: 20%;
}

.assistant-message {
    background-color: #ffffff;
    border: 1px solid #C2C2C2;
    margin-right: 20%;
}

.assistant-message p{
    font-family: "Satoshi-Regular", sans-serif
}

.assistant-message ol, .assistant-message ul {
    padding-left: 40px;
    list-style: unset;
}

/* Toggle Voice Button States */
.voice-off,
.voice-on {
    background-color: #1B364F;
    border-color: #1B364F;
    color: white;
}

.voice-off:hover,
.voice-on:hover {
    background-color: #2a4a6f;
    border-color: #2a4a6f;
}
