html,
body {
    height: 100%;
}

hr {
    border: none;
    height: 2px;
    background-color: black;
}

#dropArea {
    border-style: dashed;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

#dropArea.dragover {
    background-color: #e9ecef;
}

p {
    padding-left: 2em;
    text-indent: -2em;
}

#kb-list {
    height: 300;
    max-height: 300;
}

#sidebar {
    width: 250px;
    max-width: 250px;
}

#messages {
    height: calc(100vh - 460px);
    max-height: calc(100vh - 460px);
}

#conflict-list {
    height: calc(100vh - 70px);
    max-height: calc(100vh - 70px);
}
.form-control {
    background-color: whitesmoke !important;
    border: 2px solid green;
    border-radius: 5px !important;
    /*padding: 10px;*/
    /*font-size: 1.2rem;*/
    color: #333;
}

.form-control::placeholder {
    color: #888;
}

.form-control:focus {
    border-color: green;
    outline: none;
    box-shadow: 0 0 10px green;
}

.form-control:disabled {
    border: 0px solid lightgreen;
    opacity: 1;
}

.form-select {
    border-color: green;
}

.form-select option:hover {
    background-color: green;
}

.swal2-confirm {
    background-color: #198754 !important;
    color: #fff !important;
    border-radius: 5px !important;
}

.swal2-cancel {
    background-color: gray !important;
    color: #fff !important;
    border-radius: 5px !important;
}

.swal2-popup {
    font-size: 1.2rem !important;
    border: 2px solid lightgray;
}

.swal2-input,
.swal2-select {
    /*background-color: #f0f0f0;*/
    border: 2px solid green;
    border-radius: 5px;
    padding: 5px;
    font-size: 1.2rem !important;
    color: #333;
    /*margin-left: 0px;*/
    /*width: 200px !important*/;
    margin-top: 5px;
}

.swal2-input::placeholder {
    color: #888;
}

.swal2-input:focus,
.swal2-select:focus {
    border-color: green;
    outline: none;
    box-shadow: 0 0 10px green;
}

.swal2-checkbox input[type="checkbox"] {
    margin-right: 5px;
}

.swal2-radio input[type="radio"] {
    margin-right: 5px;
}

.swal2-select option {
    font-size: 1.2rem;
}

.ui-autocomplete {
    z-index: 10000; /* Ensure it appears above other elements */
}

/*
body {
    display: flex;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

#sidebar {
    width: 250px;
    background-color: #343a40;
    color: white;
    padding: 15px;
    overflow-y: auto;
}

#main-content {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 30px);
}


.file-display {
    display: block;
    margin-top: 10px;
}

#chat {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    padding-left: 250px;
    padding-right: 10px;
}

#messages {
    flex-grow: 1;
    margin-bottom: 10px;
    padding: 10px;
    background-color: lightgrey;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
    max-width: 100%;
    height: calc(100vh - 250px);
}

#chat .input-group {
    position: fixed;
    bottom: 0;
    left: 250px;
    right: 10px;
    padding: 10px;
    background-color: white;
    border-top: 1px solid #dee2e6;
}

#chat .form-control {
    width: calc(100% - 40px);
}

#chat .btn {
    width: 70px;
}
*/
