body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right p {
    margin: 0 10px;
}

.header-right p a {
    text-decoration: none;
    color: #333;
}

.header-right p a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
}

.sidebar {
    width: 20%;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.sidebar ul li a.active {
    font-weight: bold;
    color: #673ab7;
}

.sidebar ul li a .icon {
    margin-right: 10px;
}

.main-content {
    width: 80%;
    padding-left: 20px;
}

.main-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.settings-form {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.settings-section {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.settings-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.settings-section label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.settings-section input[type="range"] {
    width: 100%;
}

.settings-section textarea, .settings-section select, .settings-section input[type="text"], .settings-section input[type="number"], .settings-section input[type="color"], .settings-section input[type="file"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.settings-section button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group button {
    margin-left: 10px;
}

.chatbot-note {
    background-color: #e0f7fa;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border-radius: 5px;
}

.chatbot-note p {
    margin: 5px 0;
}
#user_message_color {
    width: 40px;
    height: 40px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}
/* New styles for color picker */

.color-picker-wrapper {
    display: flex;
    align-items: center;
}

.color-picker-wrapper input[type="color"] {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 10px;
}
/* Styles for #user_message_color and #chat_bubble_button_color */
#user_message_color,
#chat_bubble_button_color {
    width: 40px;
    height: 40px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
}

