.btn-danger-remove {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    color: red;
    padding: 0.5em 1em;
    border: none;
    border-radius: 0.45em;
    height: 37px;
    width: 107px;
}

.icon-wrapper {
    display: flex;
    align-items: center;
}

.icon-wrapper i {
    color: white;
    font-size: 1.5em;
    margin-right: 0.5em;
}

.btn-info-list {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    color: blue;
    padding: 0.5em 1em;
    border: 2px solid blue;
    border-radius: 0.45em;
    width: 120px;
    height: 37px;
}

.btn-secondary-edit{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: white;
    color: grey;
    padding: 0.5em 1em;
    border: 2px solid blue;
    border-radius: 0.45em;
}

.border-blue{
    border-color: blue !important;
}

.border-warning-emphasis{
    border-color: #BC3803;
}

th.sort::after{
    position: absolute
}

.toggle-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
    border-bottom: 1px solid #000; /* Underline */
}

.component-name {
    font-weight: bold;
    text-transform: capitalize;
}

.arrow {
    font-size: 1.2em;
    transition: transform 0.2s ease;
}

.collapse.show + .toggle-line .arrow {
    transform: rotate(180deg); /* Rotates arrow when collapsed content is shown */
}

#chat-input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    overflow-y: auto;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #333;
}
.chat-scrollable {
    max-height: 37vh; /* 2/3 of the viewport height */
    overflow-y: auto;
}