* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
}

#chatbox {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    max-height: 500px;
    margin-top: 20px;
    overflow: auto;
}

#userInput {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    position: absolute;
    bottom: 0;
    width: 60%;
    padding: 10px;
    left: 50%;
    transform: translateX(-50%);
	display: flex;
	align-items: center;
}

#textInput {
    border: none;
    width: 100%;
	border-radius: 5px;
    border-bottom: 3px solid black;
    margin-bottom: 30px;
    font-size: 17px;
    background-color: #dbdbdb;
    font-family: monospace;
	flex:1; 
	margin-right: 5px;
}

.sendButton {
	background-color: #015b52;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer;
}

.userText {
    color: #404040;
    font-size: 17px;
    text-align: right;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: monospace;
}

.userText span {
    background-color: #dbdbdb;
    padding: 10px;
    border-radius: 2px;
}

.botText {
    color: white;
    font-size: 17px;
    text-align: left;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: monospace;
}

.botText span {
    background-color: #01726c;
    padding: 10px;
    border-radius: 2px;
}

.thinkingText {
    color: white;
    font-family: monospace;
    font-size: 17px;
    text-align: left;
    line-height: 30px;
    margin-bottom: 20px;
}

.thinkingText span {
    background-color: #01726c;
    padding: 10px;
    border-radius: 2px;
}

.boxed {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-height: 600px;
    margin-top: 60px;
    margin-bottom: 20px;
    border: 2px solid #e3815f;
    background-color: #f0f0f0;
    position: relative;
	border-radius: 5px;
}

.title {
    font-family: 'Anton', sans-serif; 
    text-align: center;
    color: #e3815f;
    font-size: 60px;
}

.smallerTitle {
    font-family: 'Anton', sans-serif; 
    text-align: center;
    font-size: 20px;
    color: #404040;
}

.buttonContainer {
    text-align: center;
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #01726c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
    font-family: 'Anton', sans-serif;
	margin-bottom: 30px;
}

.sendBtn {
    background-color: #e3815f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 20px;
    margin-right: 10px;
	margin-bottom: 30px;
}

.sendBtn:hover {
    background-color: #db5f34 ;
}


.swal-button {
    background-color: #015b52;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer;
}

.swal-button:hover {
    background-color: #015b52;
}


.button:last-child {
    margin-right: 0;
}

.button:hover {
    background-color: #015b52;
}


