/* It's a CSS file */
@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');

* {
	box-sizing: border-box;
}

body {
	background-color: aliceblue;
	font-family: 'Open Sans', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90vh;
	margin: 0;
}

.container {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	width: 400px;
	max-width: 100%;
}

.button-container {
/*        display: flex;
        flex-row: row nowrap;
        justify-content: space-between; */
            display: flex;
            justify-content: center; /* Centers the button */
            margin-top: 20px;}


.label {
/*        background-color: #f7f7f7; */
        padding: 0;
}

.lable h3 {
        margin: 0;
}

.header {
	position: relative;
        padding: 0;
        margin: 0;
}

.header h3 {
	margin: 0;
}

.form {
	padding: 30px 10px;
}

.form-control {
	margin-bottom: 10px;
	padding-bottom: 20px;
	position: relative;
}

.form-control label {
	display: inline-block;
	margin-bottom: 5px;
}

.form-control input {
	border: 2px solid #f0f0f0;
	border-radius: 4px;
	display: block;
        font-family: inherit;
        font-size: 14px;
	padding: 10px;
	width: 100%;
} 

.form-control.success input {
	border-color: #2ecc71;
}

.form-control.error input {
        border-color: #e74c3c;
}

.form-control select {
        border: 2px solid #f0f0f0;
        border-radius: 4px;
        display: block;
        font-family: inherit;
        font-size: 14px;
        padding: 10px;
        width: 100%;
}

.form-control.success select {
        border-color: #2ecc71;
}

.form-control.error select {
        border-color: #e74c3c;
}

.form-control i {
	position: absolute;
	top: 40px;
	right: 10px;
	visibility: hidden;
}

.form-control.success i.fa-check-circle {
	color: #2ecc71;
	visibility: visible;
}

.form-control.error i.fa-exclamation-circle {
        color: #e74c3c;
        visibility: visible;
}

.form-control small {
	visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
}

.form-control.error small {
        color: #e74c3c;
        visibility: visible;
}

.form button {
        border-radius: 5px;
        color: #fff;
        display: block;
        font-family: inherit;
        font-size: 14px;
        padding: 5px;
        width: 180px;
        margin: 0px;
}

button.blue {
        background-color: #335495;
/*        background-color: #003399; */
        border: 2px solid #003399;
}

button:disabled {
        background-color: grey;
        border: 2px solid grey;
        color: lightgrey;
}

.form button:hover:enabled {
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#div2 {
        background-color: #335495;
        border-bottom: 1px solid #335495;
        color: white;
        text-align: center;
        margin: 0px;

	display: flex;
        flex-row: row nowrap;
        justify-content: space-around;
}

#div2 p {
        margin: 0;
        padding: 5px;
        font-size: 12px;
}


#div4 {
        display: flex;
        flex-row: row nowrap;
        justify-content: center;
        padding: 5px;
}

        .tabs {
            display: flex;
            cursor: pointer;
            border-bottom: 2px solid #ddd;
        }
        .tab {
            width: 50%;
            text-align: left;
            padding: 10px 0;
            padding-left: 15px; /* Adjust spacing */
            background: none;
            font-size: 14px;
            font-weight: normal;
            border: none; /* Removed borders */
        }
        .tab.active {
            border-bottom: 4px solid #007bff; /* Bold blue underline */
            font-weight: bold;
        }
        .content {
            padding: 15px;
            display: none;
	    height: 450px;
	    overflow-y: auto; /* Enables vertical scrolling */
	}
        .content.active {
            display: block;
        }

.chat-logs {
  padding:15px;
  height:150px;
  overflow-y: scroll;
  background-color: #f7f7f7;
  position: relative;
/*  border: 1px solid silver; */
  border: none;
}

.chat-msg.bot > .msg-avatar img {
  width:35px;
  height:35px;
  border-radius:50%;
  float:left;
}
.chat-msg.user > .msg-avatar img {
  width:35px;
  height:35px;
  border-radius:50%;
  float:right;
}
.cm-msg-text {
  background: #e0e0e0;
  padding:10px 15px 10px 15px;
  color:black;
  max-width:75%;
  float:left;
  margin-left:10px;
  position:relative;
  margin-bottom:20px;
  border-radius:30px;
  font-size: 14px;
}
.chat-msg {
  clear:both;
}
.chat-msg.user > .cm-msg-text {
  float:right;
  margin-right:10px;
  background: #5A5EB9;
  color:white;
}

.cm-msg-text.dot {
  float:left;
  margin-left:10px;
  background-color:white;
}

	
