/*#chatbot {
    font-family: 'poppins','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    background-color: #f5f5f5;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-image: url('../images/background.jpg');
}*/


#chat-container {
    display: none;
    position: fixed;
    bottom: 60px;
    /* Adjusted position to be above the chat-icon */
    right: 3px;
    width: 300px;
    border: 1px solid #ddd;
    z-index: 999;
    opacity: 0.99;
    background: linear-gradient(145deg, #1CB5E0 0%, #000851 100%);
    border-radius: 25px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.7);
    overflow: hidden;
    padding: 5px;
    max-width: 100%;
    font-weight: 500;

}
#chat-messages-container
{
    max-height: 60vh;
    overflow-y: auto;
}
#chat-messages {
    font-size: small;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.message {
    /*display: flex;
    */ 
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
    position: relative;
    padding: 10px 25px 10px 50px;
    font-weight: 600;
}

.user-message {
    align-self: flex-end;
    padding: 10px 50px 10px 15px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.user-avatar {
    left: auto;
    right: 10px;
    border-radius: 50%;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.7);
    object-fit: cover;
    position: absolute;
    top: -10px;
    width: 30px;
    height: 30px;
    background-color: #f13c47;
}

.bot-avatar {
    background-color: #f88b40;
    border-radius: 50%;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.7);
    object-fit: cover;
    position: absolute;
    left: 10px;
    top: -10px;
    width: 30px;
    height: 30px;
}

.message-text {
    padding: 5px;
    border-radius: 25px;
    word-wrap: break-word;
    max-height: 200px;
    overflow-y: auto;
}

#user-input {
    display: flex;
    padding: 5px;
}

#user-message {
    font-size: small;
    flex-grow: 1;
    border: 1;
    border-radius: 10px;
    margin-right: 10px;
    font-weight: 600;
}

#send-btn {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #2980b9;
    color: #fff;
    transition: background-color 0.3s;
}

#send-btn:hover {
    background-color:   #3498db;
    color:  #fff;
}

.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}

.menu-button {
    flex-grow: 1;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #3498db;
    color: #fff;
    margin: 5px;
    transition: background-color 0.3s;
}

.menu-buttons h4 {
    color:#fff;
}

.menu-button:hover {
    background-color: #2980b9;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.85);
}


#chat-title {
    padding: 10px;
    background-color: #14669c;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-radius: 25px 25px 0 0;
    margin: -5px -5px 10px -5px;
}

#user-input input,
#user-input button {
    margin-top: 5px;
    padding: 5px;

}



#contactbuttons {
    position: fixed;
    display: flex;
    bottom: 3px;
    right: 60px;
    cursor: pointer;
    z-index: 1000;
    opacity: .9;
    border-radius: 20px;
    align-content: end;
}

.contactbutton
{
    width: fit-content;
    display:flex;
    background: #086AD8;
    color: white;
    padding: 10px 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    vertical-align: middle;
}

.contactbutton .contacttext 
{
    display: none;
}

.contactbutton:hover
{
    background: orange;
    color: black;
    opacity: 1.0;
    
}

.contactbutton:hover .contacttext
{
    display: flex;
}