@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #121212; /* Fundo muito escuro */
    color: #e0e0e0; /* Texto claro */
    margin: 0;
}

nav {
    background: #1f1f1f; /* Cor da barra de navegação ligeiramente diferente */
    color: #ffffff;
    min-height: 58px;
    box-shadow: 0 4px 10px #00000055;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    color: #00e676; /* Verde Neon */
    font-weight: 500;
    margin: 0 20px;
    text-decoration: none;
}

nav a:hover {
    color: #ffeb3b; /* Amarelo */
}

main {
    width: 95%;
    max-width: 960px;
    margin: 30px auto;
}

.card {
    background: #1f1f1f; /* Fundo do card escuro */
    border-radius: 12px;
    box-shadow: 0 4px 18px #00000088;
    margin: 28px 0;
    padding: 28px;
    transition: box-shadow .18s;
}

.card:hover {
    box-shadow: 0 8px 24px #00e67650; /* Sombra do hover em verde */
}

form label {
    font-weight: 500;
    color: #00e676; /* Verde Neon */
    margin-top: 14px;
}

form input, form select, form button {
    margin-bottom: 18px;
    border-radius: 9px;
    border: 1px solid #333333;
    background: #282828; /* Fundo dos inputs */
    color: #e0e0e0;
    padding: 10px 12px;
    font-size: 1em;
}

form input:focus, form select:focus {
    border-color: #00e676;
}

form button {
    background: #00e676;
    color: #121212;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background .18s;
}

form button:hover {
    background: #ffeb3b;
    color: #121212;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    background: #1f1f1f;
    border-radius: 9px;
    box-shadow: 0 2px 12px #00e67633;
}

th, td {
    padding: 12px 8px;
    text-align: left;
}

th {
    background: #282828; /* Fundo do cabeçalho */
    color: #00e676;
}

tr:not(.conciliado) td {
    background: #1f1f1f;
}

tr.nao-conciliado td {
    background: #ff7043; /* Laranja para destaque */
    color: #121212;
}

.toast {
    position: fixed;
    top: 20px;
    right: 30px;
    background: #00e676;
    color: #121212;
    border-radius: 8px;
    padding: 13px 38px;
    box-shadow: 0 2px 17px #00e67644;
    z-index: 99;
    animation: toastfadein .7s;
}

@keyframes toastfadein {
    from {
        right: -250px;
        opacity: 0;
    }

    to {
        right: 30px;
        opacity: 1;
    }
}

footer {
    text-align: center;
    padding: 22px 0;
    font-size: 0.96em;
    color: #888;
}

@media(max-width:600px) {
    main {
        padding: 5px;
    }

    .card {
        padding: 14px;
    }

    nav {
        font-size: 0.90em;
    }
}