/* assets/css/style.css */

/* Estilos gerais */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Menu superior */
.menu-superior {
    background-color: #007BFF;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.menu-superior .menu-logo a,
.menu-superior .menu-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}
.menu-links {
    display: flex;
    align-items: center;
}
.menu-avatar {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.menu-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.perfil-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 150px;
    z-index: 1000;
}
.perfil-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}
.perfil-dropdown a:hover {
    background: #f4f4f4;
}
.perfil-dropdown.active {
    display: block;
}

/* Container de formulários e páginas internas */
.container, .login-container {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.login-container label {
    display: block;
    margin: 10px 0 5px;
}
.login-container input[type="text"],
.login-container input[type="password"],
.login-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-container button, 
.conversa-acoes button {
    padding: 10px 20px;
    background: #007BFF;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}
.login-container button:hover,
.conversa-acoes button:hover {
    background: #0056b3;
}

/* Estilos para a área de conversa */
.conversa-mensagens {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
    max-height: 400px;
    overflow-y: auto;
}
.mensagem {
    margin-bottom: 10px;
    padding: 5px;
}
.mensagem.client {
    background: #e9f7ef;
}
.mensagem.atendente {
    background: #f0f4c3;
}
.conversa-acoes {
    margin-top: 15px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 15px 0;
    background: #007BFF;
    color: #fff;
    margin-top: 30px;
}
