:root {
  --primary-color: #2a70c9;
  --primary-hover: #1f5fb2;
  --background: #fdfaf3;
  --text-color: #222;
  --link-color: var(--primary-color);
  --link-hover: var(--primary-hover);
  --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Georgia", serif;
  --card-bg: #fffdf7;
  --border-color: #e0e0e0;
}

body {
  background-color: var(--background);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

div#squiffy-container {
  max-width: 750px;
  margin: 40px auto;
  padding: 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

div#squiffy-header {
  font-size: 13px;
  text-align: right;
  margin-bottom: 12px;
  color: #666;
}

div#squiffy {
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--text-color);
}

a.squiffy-link, a.squiffy-header-link {
  text-decoration: none;
  color: var(--link-color);
  font-weight: 600;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 1px dotted transparent;
  cursor: pointer; /* <-- AQUI GARANTE O CURSOR DE MÃO */
}
}

a.squiffy-link:hover, a.squiffy-header-link:hover {
  color: var(--link-hover);
  border-bottom: 1px dotted var(--link-hover);
}

a.squiffy-link.disabled, a.squiffy-header-link.disabled {
  color: #aaa !important;
  cursor: not-allowed;
  text-decoration: none;
}

hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background-color: #f0f4f8;
  font-weight: 600;
}
