/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
	font-size: 12px !important;
}

body {
  background: #f4f6f8;
  color: #333;
  padding: 20px;
  padding-left: 240px;
}

/* Cabeçalhos */
h2 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #222;
}

/* Links */
a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Botões */
button,
input[type="submit"] {
  background: #c8431c;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

button:hover,
input[type="submit"]:hover {
  background: #c8431c;
}

/* Tabela */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

table th, table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table th {
  background: #f0f2f5;
  font-weight: bold;
  color: #444;
}

table tr:hover {
  background: #f9fbfd;
}

/* Formulários */
form {
  background: #fff;
  /* padding: 20px; */
  border-radius: 6px;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
}

form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

form input, form select {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form input:focus, form select:focus {
  border-color: #0077cc;
  outline: none;
  box-shadow: 0 0 4px rgba(0,119,204,0.2);
}
