.dashboard_wrapper {
    width: 1250px;
    margin: 30px auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    height: 85vh; /* This remains unchanged */
    display: flex;
    flex-direction: column;
}


.analytics_wrapper {
    width: 1250px;
    margin: 30px auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
}

.dashboard_card {
    margin: 20px;
    background-color: #F9F9F9;
    border-radius: 10px;
}


.inbox-container {
    display: flex;
    height: 100%; /* Adjusted to fill the remaining height of the wrapper */
    overflow: hidden; 
    background-color: white;
    border-radius: 10px;
    flex-grow: 1; /* Allows the inbox-container to grow and fill available space */
}

.dashboard_page {
    width: 100%;
    margin-top: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.dashboard-right {
    text-align: right;
    margin-left: auto !important;
    display: inline-block;
    padding: 5px;
}

.dashboard-left {
    text-align: left;
    display: inline-block;
    margin: 20px;
}


.dashboard-bot-message {
    background-color: #F3F3FE;
    color: #616161;
    text-align: left;
    margin-left: auto !important;
    max-width: 80%;
    border-radius: 20px 20px 0px 20px;
    display: inline-block;
    padding: 20px;
}

.dashboard-user-message {
    background-color: #f2f2f2;
    color: black;
    text-align: left;
    max-width: 40%;
    border-radius: 20px 20px 20px 0px;
    display: inline-block;
    padding: 20px;
}

.dashboard-system-message {
    background-color: #fdfdfd;
    color: #616161;
    text-align: left;
    margin-left: auto !important;
    max-width: 80%;
    border-radius: 20px 20px 20px 0px;
    border: 1px solid black;
    display: inline-block;
    padding: 20px;
}


.bot-message p {
    padding: 0px;
    margin-top: 10px;
}


.conversation-list {
    width: 270px;
    border-right: 1px solid #ccc;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
}

.conversation-item {
    cursor: pointer;
    padding: 10px;
}

.timestamp {
    font-size: 12px;
    margin-bottom: 0px
}

.conversation-item:hover {
    background-color: #f5f5f5;
}

.conversation-logs {
    flex: 1;
    padding-left: 10px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}


.search-container {
    display: flex;
    width: 50%;
}

.filters-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.highlight {
    font-weight: bold;
}

.tags-div {
    position: sticky;
    top: 0;
    background: white;
    padding-bottom: 10px;
}

.tags-item {
    display: inline-block;
    margin: 5px 20px;
    border: 1px solid #40584E;
    padding: 5px 10px;
    font-weight: normal;
    border-radius: 10px;
    text-align: center;
  }


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 40px; /* Adjust this value to position the dropdown below the button */
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 10px;
}

.dropdown-item {
    color: black;
    padding: 8px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.dropdown-item input {
    margin-right: 10px;
}