button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

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

.themeToggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-text); /* Color of the theme icon */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Style the browse button */
#fileInput {
display: none; /* Hide the default file input */
}

/* Custom file input button */
#fileInput + label {
padding: 10px 20px;
background-color: #007bff;
color: white;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
display: inline-block;
margin-right: 10px;
}

#fileInput + label:hover {
background-color: #0056b3;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds space between the message box, send button, and browse button */
    margin-top: 20px; /* Optional - to add space between input and the messages */
}

#messageInput {
flex-grow: 1; /* Ensures the message input takes the remaining space */
padding: 10px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 14px;
}

#sendButton {
background-color: #007bff;
color: white;
border-radius: 8px;
cursor: pointer;
padding: 10px 20px;
font-size: 16px;
}

#sendButton:hover {
background-color: #0056b3;
}
