body {
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
}

.app-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Sidebar */
.sidebar {
    width: 200px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar h2 {
    margin-bottom: 20px;
}

#contact-list {
    list-style: none;
    padding: 0;
}

#contact-list li {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#contact-list li.active, #contact-list li:hover {
    background: #a6b0c1;
}

/* Chat Area */
.chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f1f2f6;
}

.chat-header {
    background: #58c2f4;
    color: white;
    padding: 20px;
    font-weight: bold;
}

.messages {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.messages li {
    margin: 10px 0;
    padding: 10px;
    max-width: 60%;
    border-radius: 10px;
    line-height: 1.4;
}

.messages li.bot {
    background: #dfe4ea;
    align-self: flex-start;
}

.messages li.user {
    background: #58c2f4;
    color: white;
    align-self: flex-end;
}

.chat-form {
    display: flex;
    border-top: 1px solid #ccc;
}

.chat-form input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 1rem;
}
.top-right-logo {
    position: fixed;
    top: 5px;
    right: 10px;
    width: 50px; /* Adjust size as needed */
    height: auto;
    z-index: 1000;
}
.logo-bottom-right {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 100px;
    height: 100px;
    opacity: 1; /* Changed from 10 to 0.1 (range is 0 to 1) */
    cursor: pointer;
}



.chat-form button {
    padding: 15px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
