
.typing-indicator {
    display: none;
    font-style: italic;
    color: gray;
    margin-bottom: 10px;
}

    .typing-indicator.show {
        display: block;
        animation: blink 1s infinite;
    }

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    font-family: Arial;
    background-color: #393947;
    margin: 10px 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.chat-container {
    width: 98%;
    /*max-width: 600px;*/
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #9DA4A1;
}

@media only screen and (max-width: 600px) {
    .chat-container {
        width: 98%;
    }
}

.message {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 80%;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 8px;
}

#CriarTarefa {
    background-color: #2c7d85;
    text-color: #000;
    font-family: monospace;
}

#btAnydesk {
    background-color: #9c0000;
    text-color: #000;
    font-family: monospace;
}

.button {
    --bg: #000;
    --hover-bg: #000;
    --hover-text: #000;
    color: #fff;
    cursor: pointer;
    border: 1px solid var(--bg);
    border-radius: 4px;
    padding: 0.8em 2em;
    background: var(--bg);
    transition: 0.2s;
    font-family: monospace;
}

    .button:hover {
        color: var(--hover-text);
        transform: translate(-0.25rem, -0.25rem);
        background: var(--hover-bg);
        box-shadow: 0.25rem 0.25rem var(--bg);
    }

    .button:active {
        transform: translate(0);
        box-shadow: none;
    }

.user-message {
    background-color: #398faf;
    align-self: flex-end;
}

.bot-message {
    background-color: #C0C7C4;
    align-self: flex-start;
}

.chat-history {
    display: flex;
    flex-direction: column;
    height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    background-color: #393947;
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .input-container input[type="text"] {
        width: 80%;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .input-container input[type="submit"] {
        padding: 10px 20px;
        border-radius: 5px;
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
    }

.staff-container input[type="submit"] {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #003246 color: white;
    border: none;
    cursor: pointer;
    margin: 5px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000; /* Para garantir que o botão fique acima de outros elementos */
}



.input-container input[type="submit"]:hover {
    background-color: #0056b3;
}

.texto {
    font-family: monospace;
    font-size: 35px;
    margin-left: 95px;
    margin-right: 95px;
    transition: height 0.3s ease;
}

.logo {
    transition: height 0.3s ease;
    width:300px;
    margin: 10px 40%;
    text-align:center;
}
@media only screen and (max-width: 600px) {
    .logo {
        margin: 10px 10%;
    }
}

#secreto {
    display: none;
    margin-top: 20px;
}
