* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
}

.panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
}

.left-panel {
    background-color: #f4f4f4;
}

.right-panel {
    background-color: #e8e8e8;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
}

.bots-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    flex: 1;
}

.bot-card {
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 30%;
}

.bot-card h3 {
    text-align: center;
    margin-bottom: 5px;
}

.messages, .bot-logs {
    flex: 1;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 5px;
    background-color: white;
    font-size: 14px;
}

.message, .log-entry {
    margin-bottom: 5px;
    padding: 3px;
    border-radius: 3px;
}

.user-message, .user-log {
    background-color: #d1e7ff;
    text-align: right;
}

.bot-message, .bot-log {
    background-color: #e2ffe2;
    text-align: left;
}

.input-area {
    display: flex;
    gap: 5px;
}

.input-area input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.input-area button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.input-area button:hover {
    background-color: #0056b3;
}