/* RESET */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 20px;
    color: #333;
}

/* TÍTULOS */
h2, h3 {
    margin-bottom: 10px;
}

/* INPUTS */
input, textarea {
    padding: 6px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* BOTÕES */
button {
    padding: 8px 12px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background-color: #0056b3;
}

/* BOTÃO REMOVER */
button[onclick*="removerLinha"] {
    background-color: #dc3545;
}

button[onclick*="removerLinha"]:hover {
    background-color: #a71d2a;
}

/* TABELA */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: white;
}

th {
    background-color: #007bff;
    color: white;
    padding: 10px;
}

td {
    padding: 8px;
    text-align: center;
}

/* LINHAS */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e6f0ff;
}

/* LINKS */
a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* TOTAL */
#total {
    font-size: 20px;
    font-weight: bold;
    color: #28a745;
}

/* RESULTADOS */
#dinheiro, #credito {
    font-size: 18px;
    font-weight: bold;
}

/* SEÇÕES */
.container {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}