.fonki-bot {
    border-bottom: 1px solid white;
    font-size: 1.8rem;
}

.chat-debug {
    display: flex;
    flex-direction: row;
    padding: inherit;
}

.chat-widget {
    width: 300px;
    min-width: 300px;
    min-height: 700px;
    max-height: 700px;
    /* border: 1px solid #ccc;
    background-color: #fff; */
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.chat-header {
    background-color: #007bff;
    color: #fff;
    padding: 9px;
}

.chat-header-call {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.chat-header input {
    color: #000 !important;
}

.chat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    scrollbar-width: thin;
    word-wrap: break-word;
    box-sizing: border-box;
    white-space: normal;
}

/* .chat-footer {
    display: flex;
    padding: 10px;
    justify-content: space-between;
}

.chat-footer textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
} */

/* .chat-footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
} */

/* .chat-footer button:hover {
    background-color: #0056b3;
} */

.message {
    display: flex;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 4px;
    max-width: 80%;
}

.bot-message {
    background-color: #e0e0e0;
    align-self: flex-start !important;
}

.user-message {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end !important;
}

.text-message {
    align-self: flex-end !important;
    flex-direction: column;
    border: #ccc 1px solid;
    max-width: 100% !important;
    width: 100%;
}

.text-message > span {
    font-size: xx-small;
    color: gray;

}

.text-message > div {
    align-self: flex-end;
}

.msg {
    align-self: flex-start !important;
}

.table-container {
    width: 100%;
    height: 700px;
    overflow-y: auto;
}

thead {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index: 1; /* Ensures the header stays above other rows */
}

#bots {
    color: #000;
    padding: 5px;
    margin-bottom: 10px;
    outline: none;
}

#callId {
    color: #fff !important;
    outline: none;
    padding: 4px;
    font-size: 1.5rem;
    margin: 0 10px;
}

#botid {
    color: #fff !important;
    outline: none;
    padding: 4px;
    font-size: 1.5rem;
    margin: 0 10px;
}

#debugHead {
    color: white;
    background-color: #007bff;
}

.log-container {
    width: 100%;
    height: 750px;
    border: 1px solid #ccc;
    background-color: #fff;
    overflow-y: auto;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px 30px;
    position: relative;
}


label[for="timezone-other"],
#timezone-other {
  margin: 3px 10px;
  font-weight: normal;
}

#timezone-menu {
  width: fit-content !important;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: auto;
  right: inherit;
}

textarea {
    resize: both !important;
}

.fs-md {
    font-size: medium !important;
}

#input_variables {
    margin: 0 20%;
}