:root {
  --primary: #ffffff;
  --secondary: #333333;
  --accent: #d4af37;
  --background: #f4f4f4;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary);
  background: var(--background);
}

/* Container principal */
.container {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.module.collapsed h3 i.arrow {
  transform: rotate(-90deg);
}

.module ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-top: .5rem;
  overflow: hidden;
  transition: max-height .3s, padding .3s;
  max-height: 500px;
}

.module.collapsed ul {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.module li+li {
  margin-top: .3rem;
}

.module a {
  display: flex;
  align-items: center;
  padding: .4rem .6rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--secondary);
  transition: background .2s, color .2s;
}

.module a i {
  width: 18px;
  margin-right: .6rem;
  text-align: center;
}

.module a.active {
  background: var(--accent);
  color: #fff;
}

/* Conteúdo principal */
.main-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background: var(--primary);
  padding: .5rem 2rem;
  text-align: center;
  font-size: .9rem;
  color: #666;
  box-shadow: 0 -2px 4px var(--shadow);
}

.header-logo {
  width: 32px;
  /* ajuste o tamanho */
  height: auto;
  margin-right: 0.5rem;
  /* espaçamento entre logo e ícone */
  vertical-align: middle;
}

.dt-paging nav {
  display: flex !important;
}

.dt-paging-button {
  border: 1px solid #D1D5DC !important;
  border-radius: 0 !important;
  margin: 0 !important;
  margin-right: -1px !important;
}

.dt-paging .current {
  background-color: #F3F4F6 !important;
}

.dt-paging .first {
  border-right: 0px solid transparent !important;
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.dt-paging .last {
  border-left: 0px solid transparent !important;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.dt-search {
  display: none;
}

sl-input::part(input):autofill {
  background-color: white !important;
  -webkit-text-fill-color: black !important;
}

.content {
  background: var(--primary);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 2rem;
}

.flash {
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  background: #44bd32;
  color: #fff;
  border-radius: 4px;
}