* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    box-sizing: border-box;
}

:root {
    --color-back: #fff;
    --radius-div: 20px;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: gray;
}

.login {
    width: 300px;
    padding: 30px 0;
    border-radius: var(--radius-div);
    background: var(--color-back);
}

.login div {
    width: 100%;
    padding: 5px 0;
    text-align: center;
}

.login div input{
    padding: 10px;
}

.container {
    width: 90%;
    height: 550px;
    border-radius: var(--radius-div);
    background: var(--color-back);
}

.content {
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
}

.btn-up {
    width: 100%;
}
.div-menu {
    margin-top: 15px;
    width: 20%;
}

.list-menu {
    background: #D1F0FF;
}

.list-menu li {
    position: relative;
    list-style: none;
    border-bottom: 1px solid black;
}

.list-menu li a {
    display: block;
    padding: 12px;
    cursor: pointer;
}

.list-menu li a:hover {
    background: #78A7EB;
}

.list-menu li:hover .list-submenu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
}

.list-submenu {
    transition: all 0.3s;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    left: 100%;
    top: 1%;
    width: 200px;
    background: #78A7EB;
    border-left: 3px solid black;
}

.list-submenu li a:hover {
    background: #2E52FF;
}

.panel {
    margin-top: 15px;
    width: 79%;
    margin-left: 10px;
    height: 480px;
    border: 1px solid black;
}

.panel-div {
    padding: 10px;
}

.horizontal-scroll {
    width: 100%;
    height: 220px;
    overflow-x: auto;
}

.table {
    border: 1px solid black;
    width: 100%;
    border-collapse: collapse;
}

.table thead, tbody {
    display: block;
}

.table thead{
    color: #fff;
    background: black;
}

.table thead th, .table tbody td {
    width: 200px;
}

.table tbody {
    min-height: 180px;
}

.table td {
    text-align: center;
}

.modal-chat {
    width: 100%;
    margin: 10px;
}

.modal-msg-bot span {
    background: green;
    color: white;
    margin: 10px;
    padding: 10px;
}

.modal-msg-user {
    text-align: right;
}

.modal-msg-user span {
    display: inline-block;
    background: wheat;
    color: black;
    margin: 10px;
    padding: 10px;
}

.dos-columnas {
    display: flex;
}

.column {
    width: 50%;
}

[type="submit"],
button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: skyblue;
    outline: none;
}

[type="submit"]:hover,
button:hover {
    background: rgb(32, 168, 221);
}