.bot-circle {
    height: 80px;
    width: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-8 {
    gap: 8px;
}

.user-circle {
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-2 {
    gap: 2px;
}

.call-action {
    height: 75px;
    width: 75px;
    background-color: gray;
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-bg {
    background-color: black;
    /* Background of the phone call UI */
    height: 100vh;
    /* Full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

footer {
    width: 100%;
    padding: 30px;
    justify-content: center;
    /* Add padding as needed */
}

/* Fix the footer at the bottom */
.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    max-width: 500px;
    margin: 0 auto;
}

#user-canvas {
    display: block;
    width: 75px;
    height: 100%;
}

#bot-canvas {
    display: block;
    width: 100%;
    /* height: 100%; */
    max-width: 400px;
}

.buttons a {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

a#link {
    position: absolute;
    left: 20px;
    bottom: 10px;
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

.btn,
input[type="submit"] {
    cursor: pointer;
    border-radius: 0px;
    text-decoration: none;
    padding: 12px 18px;
    font-size: 12px;
    line-height: 19px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-mid {
    width: 300px;
    border-radius: 7px;
    text-decoration: none;
    padding: 14px 21px;
    font-size: 13px;
    line-height: 25px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn:hover,
input[type="submit"]:hover {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-dark,
input[type="submit"] {
    border: solid 2px #1f1f1f;
    background: transparent;
    color: #1f1f1f;
}

.btn-dark:hover,
input[type="submit"]:hover,
.btn-dark.active {
    border: solid 2px #1f1f1f;
    background: #1f1f1f;
    color: #fff !important;
}