* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #333; /* Dark gray text color */
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.chat-container {
  background-color: #fff; /* White background */
  color: #333; /* Dark gray text color */
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  margin: 0px 10px;
  width: 80%;
  padding: 10px;
}

.chat-header {
  background-color: #3B78CE; /* Teal header background */
  color: #fff;
  font-size: 24px;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 10px; /* Increased padding for a larger header */
}

.chat-messages {
  height: 200px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
}

.message-body {
  padding: 4px;
  font-size: 15px;
  position: relative;
  color: #555; /* Dark gray text color */
  border-bottom: 1px solid #eee; /* Light gray horizontal line */
}

.message-body strong {
  float: right;
  margin-left: 5px;
}

.chat-input {
  display: flex;
  margin-top: 10px;
}

.chat-input input {
  flex: 1;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 8px;
  margin-left: 15px;
}

button {
  background-color: #3B78CE; /* Teal button background */
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.sidebar {
  background-color: #f0f0f0; /* Soft gray background */
  color: #333; /* Dark gray text color */
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  margin: 0px 10px;
  width: 20%;
  padding: 10px;
}

.sidebar h3 {
  color: #333; /* Dark gray text color */
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.sidebar ul {
  list-style-type: none;
}

.sidebar li {
  margin-bottom: 5px;
}

.sidebar a {
  color: #3B78CE; /* Teal link color */
  display: block;
  padding: 5px;
  text-decoration: none;
}

.sidebar a:hover {
  background-color: #f0f0f0; /* Soft gray background on hover */
  color: #3B78CE; /* Teal link color on hover */
}

.chat-messages::-webkit-scrollbar {
  width: 10px;
}

.chat-messages::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* Soft gray scrollbar track */
}

.chat-messages::-webkit-scrollbar-thumb {
  background-color: #ccc; /* Light gray scrollbar thumb */
  border-radius: 5px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background-color: #999; /* Darker gray scrollbar thumb on hover */
}

/* Additional styles for form inputs */
input,
textarea,
select {
  float: right;
  width: 100%;
  border: 1px solid #ccc; /* Light gray input border */
  border-radius: 5px;
  padding: 10px;
  font-family: 'Open Sans';
}

.taskform input[type=datetime-local] {
  font-size: 20px;
}

input[name="start"] {
  color: #46B04A;
}

input[name="end"] {
  color: #bf2828;
}

h2 {
  color: #333; /* Dark gray heading color */
  margin-bottom: 15px;
}

.float {
  width: 100%;
  float: right;
}

label {
  float: right;
  width: 33.33%;
  margin-bottom: 10px;
  padding: 0px 10px;
}

label input {
  width: 100%;
}

#bcPicker {
  border: 1px solid #ccc;
  height: 40px;
}

.message-body:hover .hover-buttons {
  display: block;
}

.hover-buttons {
  position: absolute;
  display: none;
  left: 5px;
  top: 0px;
  padding: 3px;
}

.hover-buttons span {
  cursor: pointer;
}

.red {
  color: red;
}

.logincube {
  padding: 20px;
    width: 500px;
    margin-right: calc(50% - 250px);
}

.logincube form {
  display: flex;
  flex-direction: column;
}

.logincube label {
  width: 100%;
  margin-bottom: 10px; /* Add space between labels */
}

.logincube input[type="mail"],
.logincube input[type="password"] {
  width: 100%; /* Take up full width of the container */
  padding: 10px; /* Add padding to inputs */
  border: 1px solid #ccc; /* Add a border to inputs */
  border-radius: 5px; /* Rounded corners */
}

.logincube .float {
  display: flex;
  justify-content: center; /* Center contents horizontally */
}

.logincube .flex-container {
  display: flex;
  justify-content: space-between; /* Distribute elements evenly */
}

.logincube .flex {
  flex: 1; /* Equal distribution for flex items */
}

.logincube .button {
  padding: 8px 15px; /* Adjust padding for buttons */
  border: 1px solid #ccc; /* Add a border to buttons */
  border-radius: 5px; /* Rounded corners */
  text-decoration: none; /* Remove underline from links */
}

/* Additional styles for buttons */
.logincube .button.background-white {
  background-color: #fff; /* White background */
  color: #333; /* Dark gray text color */
}

.logincube .button.small-button {
  font-size: 14px; /* Smaller font size for small buttons */
}

.logincube .shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
}


/* screen */