/* Global styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    /*padding: 5% !important;*/
    background-color: #1e1e2f; /* Fundo escuro */
    color: #eaeaea; /* Texto claro */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}

.tbody {
    border-color: #3a3a4f !important;
}

/* Container styles */
.container {
    width: 90%;
    max-width: 800px;
    margin-top: 50px;
    background: #2c2c3e; /* Fundo do container */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
}

/* Headings */
h1 {
    text-align: center;
    color: #66ccff; /* Azul brilhante */
    margin-bottom: 20px;
}

h2 {
    color: #b0b0d5; /* Cinza claro */
    margin-bottom: 15px;
}

/* Form styles */
form {
    margin-bottom: 20px;
    text-align-last: center;
}

form input[type="text"], form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #44444470; /* Borda escura */
    border-radius: 5px;
    font-size: 16px;
    background-color: #2a2a3b; /* Fundo do input */
    color: #eaeaea; /* Texto claro */
}

form input[type="text"]:focus, form input[type="password"]:focus {
    outline: none;
    border-color: #87878789; /* Realce na borda ao focar */
    box-shadow: 0 0 5px #87878751;
}

form button {
    background-color: #d9544e;
    color: #f3f3f3;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-login {
    background-color: #439f27;
    color: #f3f3f3;
}

form button:hover {
    background-color: #fff; /* Azul mais escuro ao passar o mouse */
    color: #000000 !important;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    /* background-color: #2c2c3e; Fundo da tabela
    border-color: #3a3a4f !important; */
}

table th, table td {
    padding: 10px;
    text-align: left;
    /* border-bottom: 1px solid #3a3a4f; */
}

table th {
    /* background-color: #3a3a4f; */
    color: #616181;
    text-transform: uppercase;
    font-size: 12px;
}

table tr:hover {
    background-color: #3a3a4f; /* Destaque ao passar o mouse */
}

table td form button {
    background-color: #d9534f; /* Vermelho de exclusão */
    padding: 5px 10px;
    font-size: 14px;
    color: #eaeaea;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

       /* Estilo para o bot���o de sair com SVG */
        .logout-button {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .logout-button svg {
            width: 30px;
            height: 30px;
            fill: #d9534f; /* Cor do ���cone */
            transition: fill 0.3s ease;
        }

        .logout-button:hover svg {
            fill: #000000; /* Cor ao passar o mouse */
        
        }


::-webkit-scrollbar-thumb:hover {
    background: #ffffff !important;
}

table td form button:hover {
    background-color: #0000; 
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2a2a3b;
}

::-webkit-scrollbar-thumb {
    background: #66ccff;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3399cc;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    table th, table td {
        font-size: 14px;
    }

    form input[type="text"], form input[type="password"] {
        font-size: 14px;
    }

    form button {
        font-size: 14px;
    }
}


