@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@charset "UTF-8";
.login-shell {
  background: radial-gradient(circle at top, #ffffff 0, #eef2ff 55%, #dbe4ff 100%);
  min-height: 100vh;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  display: grid;
  place-items: center;
}

.login-panel {
  --text-muted: #6b7280;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 980px;
  border-radius: 1.75rem;
  background: var(--surface);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(1.125rem);
}

.login-panel.seconci {
  --brand-primary: #43349C;
  --brand-secondary: #46BCC4;
  --surface: rgba(255, 255, 255, 0.9);
  --overlay: linear-gradient(145deg, rgba(67, 52, 156, 0.55), rgba(16, 24, 40, 0.3));
  --badge-bg: rgba(70, 188, 196, 0.2);
}

.login-panel.siduscon {
  --brand-primary: #0D3CB0;
  --brand-secondary: #19E26A;
  --surface: rgba(255, 255, 255, 0.88);
  --overlay: linear-gradient(145deg, rgba(13, 60, 176, 0.55), rgba(16, 24, 40, 0.3));
  --badge-bg: rgba(25, 226, 106, 0.15);
}

.login-hero {
  position: relative;
  min-height: 13.75rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-nale.siduscon .login-hero {
  background-image: url("/images/v2/siduscon/hero-mobile.png");
}

.login-nale.seconci .login-hero {
  background-image: url("/images/v2/seconci/hero-mobile.png");
}

.login-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.login-hero__content {
  position: absolute;
  inset: 0;
  padding: clamp(1.75rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  gap: 0.75rem;
  z-index: 1;
}

.login-hero__badge {
  align-self: flex-start;
  background: var(--badge-bg);
  color: var(--brand-secondary);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(25, 226, 106, 0.4);
}

.login-hero__title {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.login-hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.login-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.brand img {
  height: 52px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.login-heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.login-heading h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.25rem;
}

.login-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-form .form-label {
  font-weight: 500;
  color: #1f2937;
}

.login-form .form-control {
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  border: 1px solid #d0d5dd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.login-form .form-control.form-password.is-invalid {
  background-position: right calc(2.5em + 0.1875rem) center;
  padding-right: 4em !important;
}
.login-form .form-control[readonly] {
  border-width: 0;
  background-color: #f2f2f2;
  box-shadow: unset !important;
}

.link-primary {
  color: var(--brand-primary) !important;
  font-weight: 500;
}

.login-footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.login-form .btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  padding: 0.75rem;
  border-radius: 14px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .login-panel {
    flex-direction: row;
  }
  .login-hero {
    flex: 0 0 42%;
    min-height: auto;
    background-position: center top;
  }
  .login-panel.siduscon .login-hero {
    background-image: url("/images/v2/siduscon/hero.png");
  }
  .login-panel.seconci .login-hero {
    background-image: url("/images/v2/seconci/hero.png");
  }
  .login-content {
    flex: 1;
    padding: clamp(2.5rem, 5vw, 4rem);
  }
}
@media (max-width: 899px) {
  .brand {
    text-align: center;
  }
  .login-content {
    align-items: center;
    text-align: center;
  }
  .login-heading {
    align-items: center;
  }
  .login-form {
    width: 100%;
  }
}
.btn-icon {
  border: unset;
  outline: none;
  background: transparent;
  padding: 0;
}

.input-group-password {
  position: relative;
}

.input-group-password input {
  padding-right: 2.5rem !important;
}

.btn-toggle-password {
  position: absolute;
  height: 100%;
  z-index: 1;
  right: 0rem;
  top: 0;
  color: #64748b;
  padding: 0 0.5rem;
  padding-right: 0.75rem;
}

.btn-toggle-password > svg {
  height: 1.5rem;
  width: 1.5rem;
}

.btn-toggle-password .hide {
  display: none;
}

.btn-toggle-password.active .hide {
  display: block;
}

.btn-toggle-password.active .show {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(78, 112, 255, 0.08);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 2rem);
  transition: box-shadow 0.2s ease;
}

.topbar__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(78, 112, 255, 0.16);
  background: rgba(76, 125, 255, 0.08);
  color: var(--brand-primary);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.topbar__menu:hover,
.topbar__menu:focus-visible {
  background: rgba(67, 52, 156, 0.18);
  outline: none;
  box-shadow: 0 12px 24px rgba(40, 53, 120, 0.18);
}

.topbar__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-primary-dark);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar__search {
  position: relative;
  flex: 0 0 clamp(220px, 25vw, 300px);
  display: none;
}

.topbar__search input {
  width: 100%;
  padding: 0.65rem 0.95rem 0.65rem 2.4rem;
  border-radius: 12px;
  border: 1px solid rgba(78, 112, 255, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: #101828;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.topbar__search input:focus {
  outline: none;
  border-color: rgba(76, 125, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(76, 125, 255, 0.18);
}

.topbar__search i {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-muted);
}

.topbar__profile {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(74, 149, 255, 0.12);
  border: 1px solid rgba(74, 149, 255, 0.24);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-primary);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.profile-pill:hover,
.profile-pill:focus-visible {
  background: rgba(67, 52, 156, 0.2);
  outline: none;
  box-shadow: 0 14px 26px rgba(67, 52, 156, 0.22);
}

.profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42, 211, 200, 0.85), rgba(76, 125, 255, 0.9));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(21, 28, 65, 0.22);
  padding: 0.6rem;
  min-width: 220px;
  border: 1px solid rgba(78, 112, 255, 0.1);
  display: none;
  color: var(--text-default);
}

.profile-dropdown.open {
  display: block;
  width: 250px;
  animation: dropdown-in 0.2s ease;
}

.profile-dropdown__header {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(78, 112, 255, 0.12);
  margin-bottom: 0.35rem;
}

.profile-dropdown__header small {
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
}

.profile-dropdown__item {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  color: var(--text-default);
  transition: background 0.18s ease, color 0.18s ease;
}

.profile-dropdown__item:hover {
  background: rgba(76, 125, 255, 0.12);
  color: var(--brand-primary);
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1024px) {
  .topbar__search {
    display: none;
  }
}
@media (max-width: 900px) {
  .topbar__search {
    display: none;
  }
}
@media (max-width: 640px) {
  .profile-pill span {
    display: none;
  }
  .profile-dropdown {
    min-width: 200px;
  }
}
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  color: #f5f8ff;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  position: relative;
  z-index: 102;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
  box-shadow: 20px 0 60px rgba(17, 12, 54, 0.35);
}

.sidebar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
}

.sidebar__brand img {
  height: 44px;
  width: auto;
  display: block;
}

.sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nav-list--child {
  margin: 0.4rem 0 0.6rem 0;
  padding-left: 2rem;
  gap: 0.35rem;
  position: relative;
}

.nav-list--child::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(90, 120, 255, 0.4) 0%, rgba(90, 120, 255, 0.08) 100%);
}

.nav-item {
  width: 100%;
}

.nav-link {
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(247, 249, 255, 0.92);
  font: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  line-height: normal;
}

.nav-link .icon-space {
  width: 20px;
  text-align: center;
}

.nav-link i {
  font-size: 1rem;
}

.nav-link--primary i {
  color: var(--sidebar-link-active-color);
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(74, 149, 255, 0.14);
  color: #ffffff;
  outline: none;
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(19, 35, 88, 0.22);
}

.nav-link--primary.active {
  background: var(--sidebar-link-active-bg);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(13, 25, 71, 0.3);
}

.nav-link--group {
  justify-content: space-between;
  font-weight: 600;
}

.nav-link__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-link__chevron {
  margin-left: auto;
  color: rgba(241, 246, 255, 0.6);
  transition: transform 0.2s ease;
}

.nav-group.open .nav-link__chevron {
  transform: rotate(180deg);
}

.nav-link--secondary {
  position: relative;
  padding: 0.45rem 0.6rem 0.45rem 1rem;
  font-size: 0.88rem;
  color: rgba(230, 234, 255, 0.82);
}

.nav-link--secondary:hover,
.nav-link--secondary:focus-visible {
  color: #ffffff;
  background: rgba(76, 125, 255, 0.2);
  transform: translateX(4px);
}

.nav-link--secondary.active {
  color: #ffffff;
  background: rgba(42, 211, 200, 0.22);
  font-weight: 600;
}

.sidebar__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.72rem;
  color: rgba(220, 226, 255, 0.5);
  padding-right: 0.4rem;
}

.nav-group .nav-sublist {
  display: none;
}

.nav-group.open .nav-sublist {
  display: grid;
}

.nav-group .nav-list--child {
  display: none;
}

.nav-group.open .nav-list--child {
  display: grid;
}

@media (max-width: 900px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    box-shadow: 20px 0 60px rgba(15, 23, 42, 0.28);
  }
  .sidebar.open {
    transform: translateX(0);
  }
}
.global-alert {
  border-radius: 20px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border: 1px solid transparent;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.global-alert:hover {
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.global-alert__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.global-alert__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.global-alert__meta {
  font-size: 0.78rem;
  opacity: 0.8;
}

.global-alert__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.global-alert--info {
  background: #e0f4ff;
  border-color: #bae6fd;
  color: #0f172a;
}

.global-alert--info .global-alert__icon {
  background: rgba(2, 132, 199, 0.15);
  color: #0b76c2;
}

.global-alert--warning {
  background: #fef3c7;
  border-color: #fde68a;
  color: #643d02;
}

.global-alert--warning .global-alert__icon {
  background: rgba(217, 119, 6, 0.15);
  color: #b45309;
}

.global-alert--danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #7f1d1d;
}

.global-alert--danger .global-alert__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #b91c1c;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(42, 211, 200, 0.18);
  border: 1px solid rgba(42, 211, 200, 0.3);
  color: #047857;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.status-chip:hover,
.status-chip:focus-visible {
  background: rgba(42, 211, 200, 0.28);
  box-shadow: 0 8px 18px rgba(4, 120, 87, 0.25);
  outline: none;
}

.status-chip--info {
  background: #e0f4ff;
  border-color: #bae6fd;
  color: #0f172a;
}

.status-chip--warning {
  background: #fef3c7;
  border-color: #fde68a;
  color: #643d02;
}

.status-chip--danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #7f1d1d;
}

table.dataTable {
  width: 100% !important;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background: transparent;
}

table.dataTable thead .sorting_asc:after {
  content: "\f0de";
  float: right;
  font-family: fontawesome;
}

table.dataTable thead .sorting_desc:after {
  content: "\f0dd";
  float: right;
  font-family: fontawesome;
}

table.dataTable thead .sorting:after {
  content: "\f0dc";
  float: right;
  font-family: fontawesome;
  color: rgba(50, 50, 50, 0.5);
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background: #035E7F;
  color: white;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
  border: transparent !important;
  background-color: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #A6CE3A !important;
  border: transparent !important;
  background-color: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button :hover {
  color: #fff !important;
  border: 1px solid #A6CE3A !important;
  background-color: #A6CE3A !important;
}

.dataTables_wrapper .dt-buttons a.dt-button {
  background-image: none;
  background-color: transparent;
  border: 1px solid #F4F4F4;
  border-radius: 4px;
  padding: 7px 10px;
  margin-right: 10px;
}

.dataTables_wrapper .dt-buttons a.dt-button .icon-download i {
  font-size: 20px;
  color: #CECBCB;
}

.dataTables_wrapper .dt-buttons a.dt-button:hover {
  border: 1px solid #F4F4F4;
  background-color: #F4F4F4;
  background-image: none;
}

.dataTables_wrapper .dt-buttons a.dt-button:hover .icon-download i {
  color: #ACACAC;
}

.dataTables_wrapper .dt-buttons a.dt-button:active,
.dataTables_wrapper .dt-buttons a.dt-button:focus {
  border: 1px solid #F4F4F4;
  background-color: #F4F4F4;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}

.dataTables_wrapper .dataTables_filter {
  position: absolute;
  left: 130px;
  top: 0;
  display: flex;
}

.dataTables_wrapper .dataTables_filter .icon_lupa {
  width: 37px;
  height: 37px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #F4F4F4;
}

.dataTables_wrapper .dataTables_filter .icon_lupa i {
  font-size: 16px;
  color: #CECBCB;
}

.dataTables_wrapper .dataTables_filter .icon_lupa:before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: #F4F4F4;
  position: absolute;
  top: 9px;
  right: 0;
}

.dataTables_wrapper .dataTables_filter label {
  padding-left: 0;
}

.dataTables_wrapper .dataTables_filter label input {
  margin-left: 0;
  border: none;
  border-bottom: 1px solid #F4F4F4;
  padding: 9.5px 10px 9.5px 10px;
  font-size: 12px;
  color: #CECBCB;
}

.dataTables_wrapper .dataTables_filter label input::-moz-placeholder {
  font-size: 12px;
  color: #CECBCB;
}

.dataTables_wrapper .dataTables_filter label input::placeholder {
  font-size: 12px;
  color: #CECBCB;
}

table.dataTable {
  position: relative;
  top: 30px;
  border: 1px solid white !important;
  margin-bottom: 50px !important;
  border-radius: 4px;
}

table.dataTable thead tr th {
  background-color: white !important;
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  color: #CECBCB !important;
  border-bottom: none;
}

table.dataTable thead tr th:first-child {
  border-radius: 4px 0 0 0;
}

table.dataTable thead tr th:last-child {
  border-radius: 0 4px 0 0;
}

table.dataTable thead .sorting_asc {
  background-image: none !important;
}

table.dataTable thead .sorting_desc {
  background-image: none !important;
}

table.dataTable thead .sorting {
  background-image: none !important;
}

table.dataTable tbody tr {
  background-color: #fafafa !important;
}

table.dataTable tbody tr td {
  font-size: 14px;
  color: #666666;
  font-weight: normal;
  border: 0;
  border-right: 1px solid white;
  line-height: 20px;
  padding: 8px 20px;
}

table.dataTable tbody tr td .label-ativo {
  color: #333333;
  font-weight: bold;
}

table.dataTable tbody tr td .label-inativo {
  color: #333333;
  font-weight: 400;
}

table.dataTable tbody tr td .botao-boas-vindas {
  color: #00B1CD;
}

table.dataTable tbody tr td .botao-boas-vindas i {
  font-size: 20px;
}

table.dataTable tbody tr td .botao-boas-vindas span {
  text-decoration: underline;
  font-size: 16px;
  color: #333333;
}

table.dataTable tbody tr td .botoes-datatable {
  display: flex;
  margin-top: 5px;
}

table.dataTable tbody tr td .botoes-datatable > * + * {
  margin-left: 0.25rem;
}

table.dataTable tbody tr td .botoes-datatable .editar-datatable {
  display: flex;
  color: #FBBD08;
  margin-right: 20px;
}

table.dataTable tbody tr td .botoes-datatable .editar-datatable i {
  font-size: 20px;
}

table.dataTable tbody tr td .botoes-datatable .editar-datatable p {
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
}

table.dataTable tbody tr td .botoes-datatable .visualizar-datatable {
  display: flex;
  color: #0075b6;
  margin-right: 20px;
}

table.dataTable tbody tr td .botoes-datatable .visualizar-datatable i {
  font-size: 20px;
}

table.dataTable tbody tr td .botoes-datatable .visualizar-datatable p {
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
}

table.dataTable tbody tr td .botoes-datatable .excluir-datatable {
  display: flex;
  color: #DB2828;
  cursor: pointer;
}

table.dataTable tbody tr td .botoes-datatable .excluir-datatable i {
  font-size: 20px;
}

table.dataTable tbody tr td .botoes-datatable .excluir-datatable p {
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
}

table.dataTable tbody tr:last-child td {
  border-bottom: none;
}

table.dataTable tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}

table.dataTable tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #8e8d8d !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next {
  color: #888888 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
  color: #0d1238 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
  color: #888888 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #0d1238 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #0d1238 !important;
}

.bg-title .breadcrumb {
  background: none;
  margin-bottom: 0px;
  float: right;
  padding: 0;
  margin-bottom: 5px;
}

.bg-title .breadcrumb a {
  color: rgba(0, 0, 0, 0.5);
}

.bg-title .breadcrumb a:hover {
  color: #000000;
}

.bg-title .breadcrumb .active {
  color: #ff6849;
}

.bg-title .breadcrumb {
  float: left;
  text-transform: uppercase;
}

.bg-title .breadcrumb li a {
  color: #31a7e2;
  font-size: 10px;
}

.bg-title .breadcrumb li a:hover {
  color: #31a7e2;
}

.bg-title .breadcrumb li + li:before {
  color: #ccc;
  font-size: 10px;
  padding: 0 7px;
}

.bg-title .breadcrumb li.active {
  font-size: 10px;
  color: #31a7e2;
}

.bg-title .breadcrumb li.active strong {
  font-weight: bold;
}

.breadcrumb {
  display: initial !important;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}

@media (max-width: 767px) {
  .bg-title .breadcrumb {
    float: left;
    margin-top: 0px;
    margin-bottom: 10px;
  }
}
details.dataset-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 1.2rem 1.4rem;
}

details.dataset-card summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

details.dataset-card summary::-webkit-details-marker {
  display: none;
}

details.dataset-card summary .dataset-card__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: 1rem;
}

.dataset-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.dataset-card__action {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.dataset-card__body {
  margin-top: 1rem;
}

.news-card {
  border-radius: 0;
  width: 280px;
  border: 1px solid #ddd;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.news-card:hover {
  background: #f9f9f9;
}
.news-card:hover .card-img-top img {
  transform: scale(1.1);
}
.news-card .card-img-top {
  overflow: hidden;
}
.news-card .card-badge {
  display: inline-block;
  padding: 0.25rem;
  background: #aaa;
  color: #fff;
  line-height: 1;
  margin: 0 0 0.25rem 0;
  font-size: 0.7rem;
  font-weight: 400;
}
.news-card .card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
}

#page-wrapper {
  padding: 0 40px 60px;
  background: #fff;
  border-radius: 1rem;
  position: relative;
}
#page-wrapper .bg-title {
  background: #ffffff;
  overflow: hidden;
  padding: 10px 0 10px;
  margin-bottom: 25px;
}
#page-wrapper .bg-title h4 {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  margin-top: 6px;
}
#page-wrapper .titulo_pagina {
  display: flex;
  padding: 5px 0 15px 0;
  border-bottom: 1px solid #31a7e2;
}
#page-wrapper .titulo_pagina i {
  font-size: 30px;
  font-weight: bold;
  color: #0d1238;
  padding-right: 20px;
}
#page-wrapper .titulo_pagina h1 {
  font-size: 30px;
  font-weight: bold;
  color: #0d1238;
  margin: 0;
  line-height: 30px;
}
#page-wrapper .bt_criacao {
  position: absolute;
  right: 40px;
  z-index: 1;
}
#page-wrapper .form-actions {
  text-align: center;
  margin-top: 30px;
}
#page-wrapper .form-actions .btn {
  font-size: 12px;
  width: 100px;
  padding: 8px 14px !important;
}
#page-wrapper .btn {
  font-size: 12px;
  line-height: 15px;
  font-weight: normal;
  padding: 8px 14px !important;
}
#page-wrapper .btn-default {
  text-transform: uppercase;
  color: #FFF;
  margin-right: 10px;
  border-radius: 4px;
  background: #CECBCB;
  border: 1px solid #CECBCB;
}
#page-wrapper .btn-info {
  text-transform: uppercase;
  color: #FFF;
  margin-right: 10px;
  border-radius: 4px;
}
#page-wrapper .form-group {
  margin-bottom: 1rem;
}
#page-wrapper .form-control {
  height: 38px;
}
#page-wrapper .form-group .select2-container .select2-selection--single {
  border: 1px solid #dee2e6;
  height: 38px;
}
#page-wrapper .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  color: #212529;
  line-height: 38px;
}
#page-wrapper .form-group .select2-container .select2-selection--single .select2-selection__arrow b {
  margin-top: 3px;
}
#page-wrapper .form-group .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-color: #CECBCB;
}
#page-wrapper .has-error .form-control,
#page-wrapper .has-error .form-select {
  border-color: #DB2828;
  box-shadow: none !important;
}

.flash_message {
  display: flex;
  align-items: center;
}
.flash_message i {
  margin-right: 0.5rem;
}
.flash_message p {
  margin-bottom: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #101828;
}

a {
  text-decoration: none;
  color: inherit;
}

.dashboard-shell {
  --text-default: #111827;
  --text-muted: #67718b;
  --sidebar-width: 268px;
  --surface: #ffffff;
  --surface-alt: rgba(255, 255, 255, 0.08);
  --bg: #eef1ff;
  --border: rgba(255, 255, 255, 0.16);
}
.dashboard-shell.seconci {
  --brand-primary: #4230a2;
  --brand-primary-dark: #221a53;
  --sidebar-link-active-bg: linear-gradient(120deg, rgba(74, 149, 255, 0.28), rgba(42, 211, 200, 0.24));
  --sidebar-link-active-color: #4c7dff;
  --sidebar-bg:
      linear-gradient(200deg, rgba(66, 48, 162, 0.95) 0%, rgba(34, 26, 83, 0.98) 35%, rgba(24, 21, 58, 1) 100%),
      radial-gradient(circle at top, rgba(42, 211, 200, 0.35), transparent 58%);
}
.dashboard-shell.sinduscon {
  --brand-primary: #1550a5;
  --brand-primary-dark: #0c2f63;
  --sidebar-link-active-bg: rgba(255, 255, 255, 0.16);
  --sidebar-link-active-color: #9dd5ff;
  --sidebar-bg:
      linear-gradient(195deg, rgba(21, 80, 165, 0.98) 0%, rgba(12, 47, 99, 0.98) 65%),
      radial-gradient(circle at top, rgba(43, 187, 124, 0.25), transparent 65%);
}

.dashboard-shell {
  min-height: 100vh;
  display: flex;
  background: transparent;
}

.app-surface {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: radial-gradient(circle at top right, rgba(76, 125, 255, 0.12), transparent 55%), radial-gradient(circle at 30% 80%, rgba(42, 211, 200, 0.18), transparent 60%), rgba(246, 247, 255, 0.96);
}

.content-area {
  flex: 1;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  min-height: 0;
  color: var(--text-default);
}

.content-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.content-header h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brand-primary-dark);
}

.content-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.app-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.app-overlay.active {
  opacity: 1;
  visibility: visible;
}

.help-block.with-errors {
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}
