/* Others */
.Meeting-Container {
    width: 200px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    position: fixed;
    bottom: 3%;
    left: 1%;
    z-index: 25;
    padding: 10px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.Meeting-Title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Meeting-Title p {
    color: #001f49;
    font-size: 22px;
    margin-bottom: 8px;
}

.Meeting-Button {
    display: flex;
    align-items: center;
    justify-items: center;

    border-radius: 20px;
    background-color: #001f49;
    padding: 10px;

    width: 100%;
}

.Meeting-Button a {
    color: #ffffff;
    font-family: 'Etna', sans-serif;
    text-decoration: none;
    font-size: 14px;
}


/* Bot */
#openChatBtn {
    padding: 15px;
    border-radius: 20px;
    border: none;

    font-size: 16px;
    color: #002a6f;
    font-weight: 600;
    font-family: 'Etna', sans-serif;
    cursor: pointer;

    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    bottom: 3%;
    right: 1%;
    z-index: 25;

    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Bot Modal */
.modal-content {
    display: none;
    position: fixed;
    z-index: 5;
    right: 3%;
    bottom: 12%;

    border: none;
    border-radius: 8px;

    padding: 10px;

    width: 350px;
    max-height: 80vh;
    overflow: hidden;
    flex-direction: column;

    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.Bot-Name {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin: 10px 0;
}

.BNAME {
    color: #fff;
    background-color: #001f49;

    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    width: fit-content;

}

.closechat {
    width: 10%;
    font-size: 30px;
}

#chatWindow {
    height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;

    border: 3px solid #001f49;
    padding: 5px;

    border-radius: 5px;


    display: flex;
    align-items: center;
    flex-direction: column;

    background-color: transparent;
}

.bot-message {
    background-color: #001f49;
    align-self: flex-start;
    border-radius: 10px;
    padding: 8px 12px;
    margin: 5px 0;
    max-width: fit-content;

    color: #ffffff;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
}

.bot-message a{
    color: #ffffff;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
}

.user-message {
    background-color: #ffffff;
    align-self: flex-end;

    border-radius: 10px;
    border: #001f49 solid 3px;
    padding: 8px 12px;
    margin: 10px 0;
    max-width: fit-content;

    color: #001f49;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    text-align: right;
}

#options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#options button {
    padding: 8px 12px;
    border: none;
    background-color: #001f49;
    color: white;
    border-radius: 5px;
    cursor: pointer;

    text-align: left;
    font-size: 14px;
    font-family: "DM Sans", sans-serif;

    transition: 0.5s ease-out;
}

#options button:hover {
    background-color: #1565c0;
}

/* Mobile View */
@media (max-width: 800px) {
    .Meeting-Container {
        width: 180px;
        height: 80px;
        display: none;
    }

    .Meeting-Title p {
        color: #004aad;
        font-size: 14px;
    }

    .Meeting-Button {
        width: 80%;
    }

    .Meeting-Button a {
        font-size: 12px;
    }

    /* Bot */
    #openChatBtn {
        font-size: 14px;
    }

    /* Bot Modal */
    .modal-content {
        width: 300px;
    }

    #chatWindow {
        height: 250px;
    }

    .bot-message {
        margin: 5px 0;
        font-size: 12px;
    }

    .user-message {
        margin: 5px 0;
        font-size: 12px;
    }

    #options button {
        font-size: 12px;
        text-align: center;
    }
}