/* ╔════════════════════════════════════════════════════╗ */
/* ║ 📑 contasPagar.css – Estilo da página Contas a Pagar ║ */
/* ╚════════════════════════════════════════════════════╝ */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f8fa;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.titulo {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a73e8;
}

.filtros {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filtros label {
  font-weight: 500;
}

.filtros input[type="date"] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.filtros button {
  padding: 6px 14px;
  background-color: #1a73e8;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.filtros button:hover {
  background-color: #155ab6;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

thead {
  background-color: #e5e9f0;
  font-weight: 600;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

tr:hover {
  background-color: #f2f7ff;
}

td:last-child {
  text-align: center;
}

td button {
  background-color: #28a745;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

td button:hover {
  background-color: #218838;
}
