#chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000099;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#chat-button:hover { transform: scale(1.1); }

#chat-window {
    display: none; /* Escondido por padrão */
    flex-direction: column;
    width: 350px;
    height: 450px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    position: absolute;
    bottom: 80px;
    right: 0;
    overflow: hidden;
}

#chat-header {
    background-color: #000099;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f8fafc;
}

.message {
    padding: 10px 14px;
    border-radius: 18px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: pre-wrap; /* Mantém a formatação das letras de música */
}

.bot-message {
    background-color: #e2e8f0;
    color: #1e293b;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-message {
    background-color: #000099;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

#chat-input-container {
    padding: 15px;
    display: flex;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
    color: black
}

#user-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    outline: none;
}

#chat-input-container button {
    background-color: #000099;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

