.textAssistantButton {
    z-index: 10;
    position: absolute;
    bottom: 7px;
    right: 15px;
    background: transparent;
    border: none;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
}

.highlightPulse::after {
    content: '';
    position: absolute;
    bottom: calc(0.25rem - 50%);
    right: -50%;
    width: 29px;
    height: 29px;
    z-index: -1;
    background-color: #3498db;
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.textAssistantButton:hover {
    opacity: 1;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: -80px;
    width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
    background: white;
    border-radius: 10px;
}

.dropdown-content a {
    text-decoration: none;
    display: block;
}

.show {
    display: block;
}

.assistantOptions {
    display: flex;
    align-items: center;
    padding: 5px 20px 5px 5px;
    width: 100%;
}

.assistantOptions i {
    margin: 0 6px 0 0;
    width: 15%
}

.assistantDivider {
    padding: 0;
    background: grey;
    margin: 0px 2px;
}

.assistantContainer {
    display: flex;
    width: 100%;
    height: 100%;
}

.textBoxContainer {
    display: flex;
    flex-direction: column;
    margin: 0.3rem 2rem;
    width: 50%;
    height: 100%
}

.textBoxContainer h1 {
    font-weight: bold;
    height: 5%;
    margin:0 0 0.4rem 0.2rem;
}

.assistantTextBox {
    border-radius: 10px;
    padding: 5px;
    height: 90%;
}
