body {
    font-family: 'Noto Sans Ethiopic', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    height: 100vh;
}

.mintesnot-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.sidebar {
    background-color: #333;
    color: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.sidebar a:hover {
    text-decoration: underline;
}

.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#chat-header {
    background-color: #f5f5f5;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

#chat-box {
    flex: 1;
    padding: 20px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
}

#messages {
    display: flex;
    flex-direction: column;
}

.user-message, .bot-message {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.user-message div, .bot-message div {
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.user-message div {
    background-color: #007bff;
    color: white;
}

.bot-message div {
    background-color: #f1f1f1;
}

#input-container {
    display: flex;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

#user-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#send-button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#send-button:hover {
    background-color: #0056b3;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#user-initials {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
    width: 40px;
    height: 40px;
}

#continue-message {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    width: min-content;
}

.icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}
.icons i {
    cursor: pointer;
    font-size: 24px; /* Adjust the size as needed */
    color: white; /* Adjust the color as needed */
    margin: 10px 0;
}

ol {
    padding-left: 20px;
}

ol li {
    margin-bottom: 5px;
}

p {
    margin-bottom: 10px;
}

.history-item {
    padding: 5px;
    margin: 5px 0;
    background-color: #007bff; /* Darker background for better contrast */
    color: white; /* White text for better readability */
    border-radius: 5px;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}
