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

body {
 margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.chat-container {
  display: flex;
  flex-direction: column;
  
  width: 500px;
  height: 650px;
  
  overflow: hidden;
}

.chat-header {
  background-color: #343541;
  color: white;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
	display: none;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-box {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 10px;
	margin-bottom: 10px;
	background-color: #fff;
  border-radius: 10px;

}

.message {
  max-width: 80%;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 2;
}

.user-msg {
  background-color: #dcf8c6;
  align-self: flex-end;
	
  border-radius: 20px;
}

.bot-msg {
  align-self: flex-start;
}

.input-container {
   display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 28px;
    padding: 8px 12px;
  /*  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;*/
    width: 100%;
    box-sizing: border-box;
	max-height: 58px;
}

.user-input {
    flex: 1;
    border: none;
    outline: none;
    resize: none;
    padding: 0 5px;
    margin-right: 10px;
    color: #404040;
    background: none;
    font-family: inherit;
    line-height: 1.5;
    font-size: 14px;
    margin: 0px 0px 0px 7px;
}

/* Placeholder Text */
.user-input::placeholder {
    color: #b3b3b3;
}



button {
  padding: 12px 16px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background-color: #005fa3;
}
/* Style for the login button link */
.content  { 
      flex-grow: 1; 
      display: flex; 
      flex-direction: column; 
      align-items: center; 

}
.login-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #0078d4; /* Blue color */
  border-radius: 20px; /* Rounded corners */
  text-decoration: none; /* Remove underline */
  text-align: center;
  transition: background-color 0.3s, transform 0.3s ease-in-out;
	margin: 30px;
}
.title, .login-btn {
 display: flex; 
      align-items: center; 
      justify-content: center; 
}


.login-btn:hover {
  background-color: #005fa3; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.login-btn:active {
  background-color: #003e6a; /* Even darker blue when clicked */
}

.login-btn:focus {
  outline: none; /* Remove outline on focus */
  box-shadow: 0 0 5px rgba(0, 120, 212, 0.5); /* Subtle glow effect on focus */
}

/* Send Button */
.send-button {
    background-color: #10a37f;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
	padding: 0;
}

.send-button:hover {
    background-color: #0e8d6e;
}

.send-button:active {
    background-color: #0b7058;
}

/* SVG Icon */
.send-button svg {
    fill: #ffffff;
}

   pre {
            background: #f4f4f4;
            padding: 10px;
            border-radius: 5px;
            overflow-x: auto;
	   border: 1px solid #d1d1d1;
        }
        code {
            background: #f4f4f4;
            padding: 2px 4px;
            border-radius: 3px;
            font-family: "Courier New", Courier, monospace;
        }


ul.a {
  list-style-type: circle;
}

ul.b {
  list-style-type: square;
}

ol.c {
  list-style-type: upper-roman;
}

ol.d {
  list-style-type: lower-alpha;
	margin-left: 20px;
}
li {
	margin-left: 25px;
}
/* Responsive design */
@media (max-width: 600px) {
  .chat-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
