:root {
  --gp-green-950: #0f2f24;
  --gp-green-900: #164536;
  --gp-green-800: #1c5a45;
  --gp-green-700: #25735a;
  --gp-green-600: #2f8a6b;
  --gp-green-500: #46a57f;
  --gp-green-300: #9dd7be;
  --gp-green-200: #cfeee0;
  --gp-green-100: #e8f8ef;
  --gp-green-050: #f4fcf7;
  --gp-text-strong: #123126;
  --gp-text-soft: #547467;
  --gp-white: #ffffff;
  --gp-shadow: 0 18px 45px rgba(18, 49, 38, 0.14);
  --gp-shadow-soft: 0 10px 24px rgba(18, 49, 38, 0.1);
  --gp-radius-lg: 24px;
  --gp-radius-md: 16px;
}

body {
  color: var(--gp-text-strong);
}

body.auth-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(157, 215, 190, 0.45), transparent 32%),
    radial-gradient(circle at bottom right, rgba(47, 138, 107, 0.28), transparent 30%),
    linear-gradient(135deg, #f3fbf6 0%, #dff3e7 46%, #1a4e3b 46%, #133728 100%);
  background-attachment: fixed;
}

body.auth-shell .signin-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
}

body.auth-shell .signin-box {
  width: 100%;
  max-width: 460px;
  padding: 34px 30px 28px;
  border: 1px solid rgba(22, 69, 54, 0.1);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--gp-shadow);
}

body.auth-shell .signin-box h3 {
  margin-bottom: 6px;
  color: var(--gp-green-950);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.auth-shell .signin-box hr {
  border-top: 1px solid rgba(47, 138, 107, 0.18);
  margin: 20px 0 24px;
}

body.auth-shell .form-control,
body.auth-shell input,
body.auth-shell textarea {
  min-height: 52px;
  border: 1px solid rgba(47, 138, 107, 0.22);
  border-radius: 14px;
  background: var(--gp-green-050);
  color: var(--gp-text-strong);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.auth-shell .form-control:focus,
body.auth-shell input:focus,
body.auth-shell textarea:focus {
  border-color: var(--gp-green-500);
  background: var(--gp-white);
  box-shadow: 0 0 0 4px rgba(70, 165, 127, 0.16);
}

body.auth-shell .btn {
  min-height: 48px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

body.auth-shell .btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--gp-shadow-soft);
}

body.auth-shell .btn-dark,
body.auth-shell .btn-primary,
body.auth-shell .btn-info {
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  color: var(--gp-white);
}

body.auth-shell .btn-danger,
body.auth-shell .btn-warning {
  background: linear-gradient(135deg, #214b3a, #2f6e56);
  color: var(--gp-white);
}

body.auth-shell code {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--gp-green-100);
  color: var(--gp-green-900);
}

body.theme-green {
  background:
    radial-gradient(circle at top, rgba(157, 215, 190, 0.18), transparent 24%),
    linear-gradient(180deg, #effaf3 0%, #edf8f1 220px, #e3f1e9 220px, #e3f1e9 100%);
  color: var(--gp-text-strong);
}

body.theme-green .slim-header {
  border-bottom: 1px solid rgba(22, 69, 54, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 248, 239, 0.96));
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(22, 69, 54, 0.08);
}

body.theme-green .slim-header .container-fluid {
  min-height: 76px;
}

body.theme-green .slim-logo img {
  max-height: 40px;
}

body.theme-green .logged-user,
body.theme-green .logged-user:hover,
body.theme-green .logged-user:focus {
  color: var(--gp-green-950) !important;
  font-weight: 600;
}

body.theme-green .slim-sidebar {
  border-right: 1px solid rgba(22, 69, 54, 0.08);
  background: linear-gradient(180deg, #123126 0%, #184334 100%);
  box-shadow: 16px 0 40px rgba(18, 49, 38, 0.12);
  z-index: 4;
}

body.theme-green .sidebar-label {
  color: rgba(232, 248, 239, 0.7);
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.theme-green .sidebar-nav-link {
  margin-bottom: 8px;
  border-radius: 14px;
  color: #eaf9f1 !important;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

body.theme-green .sidebar-nav-link:hover,
body.theme-green .sidebar-nav-link:focus {
  background: rgba(157, 215, 190, 0.14);
  transform: translateX(4px);
  color: #ffffff !important;
}

body.theme-green .sidebar-nav-link.active {
  background: linear-gradient(135deg, rgba(157, 215, 190, 0.24), rgba(70, 165, 127, 0.34));
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(207, 238, 224, 0.14);
}

body.theme-green .slim-mainpanel .container,
body.theme-green .slim-mainpanel .container-fluid {
  padding-top: 28px;
}

body.theme-green .slim-body,
body.theme-green .slim-mainpanel,
body.theme-green .slim-mainpanel .container,
body.theme-green .slim-mainpanel .container-fluid {
  min-width: 0;
}

body.theme-green .slim-mainpanel {
  position: relative;
  z-index: 1;
}

body.theme-green .slim-mainpanel .container,
body.theme-green .slim-mainpanel .container-fluid {
  width: 100%;
  max-width: 100%;
}

body.theme-green .report-summary-header,
body.theme-green .card,
body.theme-green .signin-box,
body.theme-green .modal-content,
body.theme-green .dropdown-menu {
  border: 1px solid rgba(22, 69, 54, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--gp-shadow-soft);
}

body.theme-green .report-summary-header {
  padding: 24px 26px;
}

body.theme-green .card-status {
  border: none;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 248, 239, 0.92));
}

body.theme-green .card-status h1,
body.theme-green .tx-inverse,
body.theme-green .section-title {
  color: var(--gp-green-950) !important;
}

body.theme-green .card-status p,
body.theme-green .mg-b-0,
body.theme-green .media-body p {
  color: var(--gp-text-soft);
}

body.theme-green .btn-primary,
body.theme-green .btn-success,
body.theme-green .btn-info,
body.theme-green .btn-dark {
  border: none;
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  color: var(--gp-white);
}

body.theme-green .btn-secondary,
body.theme-green .btn-danger,
body.theme-green .btn-warning {
  border: none;
  background: linear-gradient(135deg, var(--gp-green-900), var(--gp-green-700));
  color: var(--gp-white);
}

body.theme-green .btn:hover {
  box-shadow: var(--gp-shadow-soft);
}

body.theme-green .form-control,
body.theme-green .dataTables_filter input,
body.theme-green .select2-selection,
body.theme-green textarea,
body.theme-green input[type="text"],
body.theme-green input[type="password"],
body.theme-green input[type="email"] {
  border-color: rgba(47, 138, 107, 0.18) !important;
  border-radius: 14px !important;
  background: #f9fdfb !important;
  color: var(--gp-text-strong) !important;
}

body.theme-green .form-control:focus,
body.theme-green .dataTables_filter input:focus,
body.theme-green textarea:focus,
body.theme-green input:focus {
  border-color: var(--gp-green-500) !important;
  box-shadow: 0 0 0 4px rgba(70, 165, 127, 0.12) !important;
}

body.theme-green #msg-assinatura .button {
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  color: #fff;
}

body.theme-green .time,
body.theme-green .expiration-date {
  color: var(--gp-green-900);
}

body.theme-green.dark-mode {
  background: linear-gradient(180deg, #0f1f19 0%, #132821 100%);
}

body.theme-green.dark-mode .slim-header,
body.theme-green.dark-mode .card,
body.theme-green.dark-mode .report-summary-header,
body.theme-green.dark-mode .dropdown-menu {
  background: rgba(20, 39, 31, 0.92);
  border-color: rgba(157, 215, 190, 0.12);
}

body.theme-green.dark-mode .tx-inverse,
body.theme-green.dark-mode .card-status h1,
body.theme-green.dark-mode .logged-user,
body.theme-green.dark-mode .section-title,
body.theme-green.dark-mode .time,
body.theme-green.dark-mode .expiration-date {
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .card-status p,
body.theme-green.dark-mode .mg-b-0,
body.theme-green.dark-mode .media-body p {
  color: #b9d8cb !important;
}

body.theme-green.dark-mode .form-control,
body.theme-green.dark-mode .dataTables_filter input,
body.theme-green.dark-mode textarea,
body.theme-green.dark-mode input {
  background: rgba(18, 49, 38, 0.85) !important;
  border-color: rgba(157, 215, 190, 0.16) !important;
  color: #eaf9f1 !important;
}

@media (max-width: 991px) {
  body.auth-shell .signin-box {
    max-width: 100%;
    padding: 28px 22px 22px;
  }

  body.theme-green .slim-mainpanel .container,
  body.theme-green .slim-mainpanel .container-fluid {
    padding-top: 18px;
  }
}

body.theme-green .slim-sidebar {
  border-right: 1px solid rgba(18, 49, 38, 0.08);
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
  box-shadow: 10px 0 30px rgba(18, 49, 38, 0.08);
}

body.theme-green .sidebar-shell {
  height: calc(100vh - 76px);
  overflow-y: auto;
  padding: 18px 14px 28px;
}

body.theme-green .sidebar-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid rgba(47, 138, 107, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #edf8f2);
  box-shadow: 0 12px 28px rgba(18, 49, 38, 0.08);
}

body.theme-green .sidebar-profile-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f2faf5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.theme-green .sidebar-profile-icon img {
  max-width: 32px;
  max-height: 32px;
}

body.theme-green .sidebar-profile-copy {
  min-width: 0;
}

body.theme-green .sidebar-profile-copy strong {
  display: block;
  color: var(--gp-green-950);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

body.theme-green .sidebar-profile-copy span {
  display: block;
  margin-top: 4px;
  color: var(--gp-text-soft);
  font-size: 0.82rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.theme-green .sidebar-section + .sidebar-section {
  margin-top: 16px;
}

body.theme-green .sidebar-label {
  margin: 0 8px 10px;
  color: #7a8f85;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.theme-green .nav-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.theme-green .sidebar-nav-item {
  margin: 0;
}

body.theme-green .sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 14px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--gp-text-strong) !important;
  font-size: 0.96rem;
  font-weight: 600;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.theme-green .sidebar-nav-link i {
  width: 20px;
  margin: 0;
  color: #70857a;
  font-size: 16px;
  text-align: center;
  flex-shrink: 0;
}

body.theme-green .sidebar-nav-link span {
  line-height: 1.3;
}

body.theme-green .sidebar-nav-link:hover,
body.theme-green .sidebar-nav-link:focus {
  background: #f3faf6;
  border-color: rgba(47, 138, 107, 0.12);
  color: var(--gp-green-950) !important;
  transform: none;
}

body.theme-green .sidebar-nav-link:hover i,
body.theme-green .sidebar-nav-link:focus i {
  color: var(--gp-green-700);
}

body.theme-green .sidebar-nav-link.active {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #eef8f2);
  border-color: rgba(47, 138, 107, 0.16);
  color: var(--gp-green-950) !important;
  box-shadow: 0 10px 22px rgba(18, 49, 38, 0.08);
}

body.theme-green .sidebar-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gp-green-700), var(--gp-green-500));
}

body.theme-green .sidebar-nav-link.active i {
  color: var(--gp-green-700);
}

body.theme-green.dark-mode .slim-sidebar {
  background: linear-gradient(180deg, #0f1f19 0%, #14271f 100%);
  border-right-color: rgba(157, 215, 190, 0.1);
}

body.theme-green.dark-mode .sidebar-profile-card,
body.theme-green.dark-mode .sidebar-nav-link.active {
  background: rgba(21, 44, 34, 0.9);
  border-color: rgba(157, 215, 190, 0.12);
}

body.theme-green.dark-mode .sidebar-profile-icon {
  background: rgba(255, 255, 255, 0.03);
}

body.theme-green.dark-mode .sidebar-profile-copy strong,
body.theme-green.dark-mode .sidebar-nav-link,
body.theme-green.dark-mode .sidebar-nav-link.active {
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .sidebar-profile-copy span,
body.theme-green.dark-mode .sidebar-label,
body.theme-green.dark-mode .sidebar-nav-link i {
  color: #aacdbc !important;
}

body.theme-green.dark-mode .sidebar-nav-link:hover,
body.theme-green.dark-mode .sidebar-nav-link:focus {
  background: rgba(255, 255, 255, 0.04);
}

body.theme-green .slim-sidebar {
  width: 264px;
  margin-left: -264px;
  padding: 0;
  border-right: 1px solid rgba(18, 49, 38, 0.08);
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 18px 0 42px rgba(18, 49, 38, 0.09);
}

@media (min-width: 1200px) {
  body.theme-green .slim-sidebar {
    margin-left: 0;
  }
}

body.theme-green #slimSidebarMenu {
  width: 42px;
  height: 42px;
  margin-left: 14px;
  border: 1px solid rgba(18, 49, 38, 0.1);
  border-radius: 14px;
  background: #ffffff;
  color: var(--gp-green-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(18, 49, 38, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.theme-green #slimSidebarMenu:hover,
body.theme-green #slimSidebarMenu:focus {
  border-color: rgba(47, 138, 107, 0.2);
  color: var(--gp-green-700);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 49, 38, 0.1);
}

body.theme-green #slimSidebarMenu i {
  font-size: 18px;
}

body.theme-green .sidebar-shell {
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 14px 12px 20px;
  scrollbar-gutter: stable;
}

body.theme-green .sidebar-shell::-webkit-scrollbar {
  width: 8px;
}

body.theme-green .sidebar-shell::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(18, 49, 38, 0.16);
}

body.theme-green .sidebar-profile-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid rgba(47, 138, 107, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(157, 215, 190, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: 0 12px 24px rgba(18, 49, 38, 0.06);
}

body.theme-green .sidebar-profile-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5fbf7 0%, #ebf6f0 100%);
  border: 1px solid rgba(47, 138, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.theme-green .sidebar-profile-icon img {
  max-width: 26px;
  max-height: 26px;
}

body.theme-green .sidebar-profile-copy {
  min-width: 0;
  flex: 1;
}

body.theme-green .sidebar-profile-copy strong {
  display: block;
  color: var(--gp-green-950);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

body.theme-green .sidebar-profile-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

body.theme-green .sidebar-profile-role {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border: 1px solid rgba(47, 138, 107, 0.12);
  border-radius: 999px;
  background: rgba(70, 165, 127, 0.08);
  color: var(--gp-green-800);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.theme-green .sidebar-profile-copy span:last-child {
  display: block;
  margin-top: 7px;
  color: var(--gp-text-soft);
  font-size: 0.76rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.theme-green .sidebar-section + .sidebar-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 49, 38, 0.06);
}

body.theme-green .sidebar-label {
  margin: 0 8px 8px;
  color: #8a9e94;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.theme-green .nav-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.theme-green .sidebar-nav-item {
  margin: 0;
}

body.theme-green .sidebar-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 12px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #244236 !important;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

body.theme-green .sidebar-nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(18, 49, 38, 0.08);
  background: linear-gradient(180deg, #f6f9f8 0%, #eef5f1 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: inherit;
}

body.theme-green .sidebar-nav-link i {
  width: auto;
  margin: 0;
  color: #778c81;
  font-size: 13px;
  text-align: center;
  line-height: 1;
}

body.theme-green .sidebar-nav-text {
  flex: 1;
  line-height: 1.3;
}

body.theme-green .sidebar-nav-link:hover,
body.theme-green .sidebar-nav-link:focus {
  background: #f5faf7;
  border-color: rgba(47, 138, 107, 0.1);
  color: var(--gp-green-950) !important;
  text-decoration: none;
  transform: translateX(4px);
}

body.theme-green .sidebar-nav-link:hover .sidebar-nav-icon,
body.theme-green .sidebar-nav-link:focus .sidebar-nav-icon {
  border-color: rgba(47, 138, 107, 0.12);
  background: linear-gradient(180deg, #f2faf6 0%, #e8f4ed 100%);
}

body.theme-green .sidebar-nav-link:hover i,
body.theme-green .sidebar-nav-link:focus i {
  color: var(--gp-green-700);
}

body.theme-green .sidebar-nav-link.active {
  padding-left: 16px;
  background: #ffffff;
  border-color: rgba(47, 138, 107, 0.16);
  color: var(--gp-green-950) !important;
  box-shadow: 0 10px 18px rgba(18, 49, 38, 0.06);
}

body.theme-green .sidebar-nav-link.active::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gp-green-700), var(--gp-green-500));
}

body.theme-green .sidebar-nav-link.active .sidebar-nav-icon {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  box-shadow: 0 10px 18px rgba(47, 138, 107, 0.24);
}

body.theme-green .sidebar-nav-link.active i {
  color: #ffffff;
}

body.theme-green .sidebar-accordion-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.theme-green .sidebar-search-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(18, 49, 38, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 49, 38, 0.05);
}

body.theme-green .sidebar-search-icon {
  color: #90a49a;
  font-size: 14px;
}

body.theme-green .sidebar-search-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gp-green-950);
  font-size: 0.87rem;
  font-weight: 500;
}

body.theme-green .sidebar-search-input::placeholder {
  color: #9bb0a6;
}

body.theme-green .sidebar-dashboard-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 49, 38, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fdfefe 0%, #f6faf8 100%);
  color: #203b31 !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(16, 42, 32, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.theme-green .sidebar-dashboard-link:hover,
body.theme-green .sidebar-dashboard-link:focus {
  text-decoration: none;
  color: var(--gp-green-950) !important;
  transform: translateY(-1px);
  background: #f6faf7;
  box-shadow: 0 14px 24px rgba(16, 42, 32, 0.08);
}

body.theme-green .sidebar-dashboard-link.active {
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  border-color: rgba(47, 138, 107, 0.24);
  color: #ffffff !important;
  box-shadow: 0 12px 22px rgba(47, 138, 107, 0.24);
}

body.theme-green .sidebar-dashboard-icon {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: linear-gradient(180deg, #f6f9f8 0%, #eef5f1 100%);
  border: 1px solid rgba(18, 49, 38, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #74897f;
  flex-shrink: 0;
}

body.theme-green .sidebar-dashboard-link.active .sidebar-dashboard-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

body.theme-green .sidebar-dashboard-link.active .sidebar-dashboard-icon i {
  color: #ffffff;
}

body.theme-green .sidebar-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.theme-green .sidebar-group {
  border: 1px solid rgba(18, 49, 38, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 22px rgba(18, 49, 38, 0.05);
  overflow: hidden;
}

body.theme-green .sidebar-group-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  color: #203b31;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

body.theme-green .sidebar-group-toggle:hover,
body.theme-green .sidebar-group-toggle:focus {
  outline: none;
  background: #f6faf7;
  color: var(--gp-green-950);
}

body.theme-green .sidebar-group.is-active .sidebar-group-toggle,
body.theme-green .sidebar-group.is-open .sidebar-group-toggle {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

body.theme-green .sidebar-group-icon,
body.theme-green .sidebar-leaf-icon {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  border: 1px solid rgba(18, 49, 38, 0.08);
  background: linear-gradient(180deg, #f6f9f8 0%, #eef5f1 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.theme-green .sidebar-group-icon i,
body.theme-green .sidebar-leaf-icon i {
  color: #74897f;
  font-size: 14px;
}

body.theme-green .sidebar-group-text,
body.theme-green .sidebar-leaf-text {
  flex: 1;
  line-height: 1.3;
}

body.theme-green .sidebar-group-caret {
  color: #7f9389;
  font-size: 16px;
  transition: transform 0.18s ease;
}

body.theme-green .sidebar-group.is-open .sidebar-group-caret {
  transform: rotate(180deg);
}

body.theme-green .sidebar-group-menu {
  display: none;
  padding: 0 10px 12px 10px;
}

body.theme-green .sidebar-group-menu.is-open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.theme-green .sidebar-leaf-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 14px;
  color: #3c5147 !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.theme-green .sidebar-leaf-link:hover,
body.theme-green .sidebar-leaf-link:focus {
  background: #f6faf7;
  color: var(--gp-green-950) !important;
  transform: translateX(3px);
}

body.theme-green .sidebar-leaf-link.active {
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  color: #ffffff !important;
  box-shadow: 0 12px 22px rgba(47, 138, 107, 0.24);
}

body.theme-green .sidebar-leaf-link.active .sidebar-leaf-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

body.theme-green .sidebar-leaf-link.active .sidebar-leaf-icon i {
  color: #ffffff;
}

body.theme-green.dark-mode #slimSidebarMenu {
  background: rgba(21, 44, 34, 0.92);
  border-color: rgba(157, 215, 190, 0.12);
  color: #eaf9f1;
}

body.theme-green.dark-mode .slim-sidebar {
  border-right-color: rgba(157, 215, 190, 0.08);
  background: linear-gradient(180deg, #102019 0%, #152a21 100%);
  box-shadow: 18px 0 42px rgba(0, 0, 0, 0.28);
}

body.theme-green.dark-mode .sidebar-profile-card {
  border-color: rgba(157, 215, 190, 0.1);
  background:
    radial-gradient(circle at top right, rgba(157, 215, 190, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(21, 44, 34, 0.98) 0%, rgba(18, 38, 30, 0.98) 100%);
}

body.theme-green.dark-mode .sidebar-profile-icon,
body.theme-green.dark-mode .sidebar-nav-icon {
  border-color: rgba(157, 215, 190, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.theme-green.dark-mode .sidebar-profile-role {
  border-color: rgba(157, 215, 190, 0.12);
  background: rgba(157, 215, 190, 0.08);
  color: #d5efe1;
}

body.theme-green.dark-mode .sidebar-section + .sidebar-section {
  border-top-color: rgba(157, 215, 190, 0.08);
}

body.theme-green.dark-mode .sidebar-label {
  color: #8fb1a1 !important;
}

body.theme-green.dark-mode .sidebar-nav-link {
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .sidebar-nav-link i {
  color: #aacdbc;
}

body.theme-green.dark-mode .sidebar-nav-link:hover,
body.theme-green.dark-mode .sidebar-nav-link:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(157, 215, 190, 0.08);
}

body.theme-green.dark-mode .sidebar-nav-link.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(157, 215, 190, 0.12);
  box-shadow: none;
}

body.theme-green.dark-mode .sidebar-search-card,
body.theme-green.dark-mode .sidebar-group,
body.theme-green.dark-mode .sidebar-group.is-open .sidebar-group-toggle {
  background: rgba(21, 44, 34, 0.92);
  border-color: rgba(157, 215, 190, 0.08);
  box-shadow: none;
}

body.theme-green.dark-mode .sidebar-search-input,
body.theme-green.dark-mode .sidebar-group-toggle,
body.theme-green.dark-mode .sidebar-leaf-link {
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .sidebar-search-input::placeholder,
body.theme-green.dark-mode .sidebar-group-caret {
  color: #9dbbaa;
}

body.theme-green.dark-mode .sidebar-dashboard-link {
  background: linear-gradient(135deg, rgba(120, 84, 54, 0.36) 0%, rgba(51, 34, 24, 0.44) 100%);
  border-color: rgba(245, 188, 140, 0.16);
  color: #fff1e3 !important;
  box-shadow: none;
}

body.theme-green.dark-mode .sidebar-dashboard-icon,
body.theme-green.dark-mode .sidebar-group-icon,
body.theme-green.dark-mode .sidebar-leaf-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(157, 215, 190, 0.08);
}

body.theme-green.dark-mode .sidebar-dashboard-icon,
body.theme-green.dark-mode .sidebar-dashboard-icon i {
  color: #ffd5b4;
}

body.theme-green.dark-mode .sidebar-group-icon i,
body.theme-green.dark-mode .sidebar-leaf-icon i {
  color: #aacdbc;
}

body.theme-green.dark-mode .sidebar-group-toggle:hover,
body.theme-green.dark-mode .sidebar-group-toggle:focus,
body.theme-green.dark-mode .sidebar-leaf-link:hover,
body.theme-green.dark-mode .sidebar-leaf-link:focus {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1199px) {
  body.theme-green .slim-sidebar {
    max-height: calc(100vh - 76px);
  }

  body.theme-green .sidebar-shell {
    height: calc(100vh - 76px);
  }
}

body.theme-green .slim-header .slim-logo img {
  display: block;
  width: auto !important;
  height: 38px !important;
  max-width: 190px;
  max-height: 38px !important;
  object-fit: contain;
}

body.theme-green .slim-header.with-sidebar .slim-header-left {
  min-height: 76px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  body.theme-green .slim-sticky-sidebar .slim-sidebar {
    height: calc(100vh - 75px);
  }

  body.theme-green .slim-sticky-sidebar .slim-mainpanel {
    margin-left: 264px;
  }

  body.theme-green.hide-sidebar .slim-sidebar {
    margin-left: -264px;
  }
}

@media (max-width: 1199.98px) {
  body.theme-green .slim-sidebar {
    height: calc(100vh - 75px);
  }

  body.theme-green.show-sidebar .slim-body {
    transform: translateX(264px);
  }

  body.theme-green.show-sidebar .slim-header.with-sidebar .slim-header-right {
    transform: translateX(264px);
  }

  body.theme-green.show-sidebar.slim-sticky-sidebar .slim-mainpanel {
    transform: translateX(264px);
    opacity: 0.75;
  }
}

body.theme-green nav.nav-sidebar {
  background: transparent !important;
  padding-bottom: 0 !important;
}

body.theme-green.dark-mode .slim-header .slim-logo img {
  width: auto !important;
  height: 38px !important;
  max-width: 190px;
  max-height: 38px !important;
}

body.theme-green.dark-mode .slim-sidebar {
  border-right-color: rgba(18, 49, 38, 0.08);
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 18px 0 42px rgba(18, 49, 38, 0.09);
}

body.theme-green.dark-mode nav.nav-sidebar {
  background: transparent !important;
  padding-bottom: 0 !important;
}

body.theme-green.dark-mode .sidebar-profile-card {
  border-color: rgba(47, 138, 107, 0.12);
  background:
    radial-gradient(circle at top right, rgba(157, 215, 190, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: 0 12px 24px rgba(18, 49, 38, 0.06);
}

body.theme-green.dark-mode .sidebar-profile-icon,
body.theme-green.dark-mode .sidebar-nav-icon {
  border-color: rgba(18, 49, 38, 0.08);
  background: linear-gradient(180deg, #f6f9f8 0%, #eef5f1 100%);
}

body.theme-green.dark-mode .sidebar-profile-copy strong,
body.theme-green.dark-mode .sidebar-profile-copy span:last-child,
body.theme-green.dark-mode .sidebar-label,
body.theme-green.dark-mode .sidebar-nav-link,
body.theme-green.dark-mode .sidebar-nav-link i {
  color: inherit !important;
}

body.theme-green.dark-mode .sidebar-profile-role {
  border-color: rgba(47, 138, 107, 0.12);
  background: rgba(70, 165, 127, 0.08);
  color: var(--gp-green-800) !important;
}

body.theme-green.dark-mode .sidebar-section + .sidebar-section {
  border-top-color: rgba(18, 49, 38, 0.06);
}

body.theme-green.dark-mode .sidebar-nav-link:hover,
body.theme-green.dark-mode .sidebar-nav-link:focus {
  background: #f5faf7;
  border-color: rgba(47, 138, 107, 0.1);
  color: var(--gp-green-950) !important;
}

body.theme-green.dark-mode .sidebar-nav-link:hover i,
body.theme-green.dark-mode .sidebar-nav-link:focus i {
  color: var(--gp-green-700) !important;
}

body.theme-green.dark-mode .sidebar-nav-link.active {
  background: #ffffff;
  border-color: rgba(47, 138, 107, 0.16);
  color: var(--gp-green-950) !important;
  box-shadow: 0 14px 26px rgba(18, 49, 38, 0.08);
}

body.theme-green.dark-mode .sidebar-nav-link.active .sidebar-nav-icon {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gp-green-700), var(--gp-green-500));
  box-shadow: 0 10px 18px rgba(47, 138, 107, 0.24);
}

body.theme-green.dark-mode .sidebar-nav-link.active i {
  color: #ffffff !important;
}

body.theme-green .sidebar-profile-card {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 54px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
}

body.theme-green .sidebar-profile-copy {
  width: 100%;
  flex: 0 1 auto;
  text-align: center;
}

body.theme-green .sidebar-profile-copy strong {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.15;
}

body.theme-green.dark-mode .sidebar-profile-card,
body.theme-green.dark-mode .sidebar-profile-copy,
body.theme-green.dark-mode .sidebar-profile-copy strong {
  text-align: center;
}

body.theme-green .slim-header {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 251, 247, 0.98) 68%, rgba(231, 247, 238, 0.98) 100%);
  box-shadow: 0 14px 34px rgba(18, 49, 38, 0.08);
}

body.theme-green .report-summary-header,
body.theme-green .payments-board,
body.theme-green .card,
body.theme-green .modal-content {
  border-color: rgba(18, 49, 38, 0.06);
  box-shadow: 0 14px 34px rgba(18, 49, 38, 0.07);
}

body.theme-green .sidebar-profile-card {
  justify-content: center;
  align-items: center;
  min-height: 82px;
  margin-bottom: 18px;
  padding: 12px 16px;
}

body.theme-green .sidebar-profile-copy {
  text-align: center;
}

body.theme-green .sidebar-profile-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

body.theme-green .sidebar-section + .sidebar-section {
  margin-top: 16px;
  padding-top: 14px;
}

body.theme-green .sidebar-nav-link {
  min-height: 46px;
  padding: 9px 12px;
  border-radius: 16px;
  font-weight: 700;
}

body.theme-green .sidebar-nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: linear-gradient(180deg, #f8fbfa 0%, #edf5f1 100%);
}

body.theme-green .sidebar-nav-link.active {
  background:
    radial-gradient(circle at left center, rgba(70, 165, 127, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef7f2 100%);
  box-shadow: 0 12px 28px rgba(18, 49, 38, 0.08);
}

body.theme-green .sidebar-nav-link.active .sidebar-nav-icon {
  border-color: rgba(47, 138, 107, 0.16);
  background: linear-gradient(135deg, rgba(47, 138, 107, 0.18), rgba(157, 215, 190, 0.24));
}

body.theme-green .sidebar-nav-link.active i {
  color: #1f6b4f;
}

body.theme-green .page-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(18, 49, 38, 0.06);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(70, 165, 127, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.96));
  box-shadow: 0 14px 34px rgba(18, 49, 38, 0.07);
}

body.theme-green .page-toolbar-heading {
  min-width: 0;
}

body.theme-green .page-toolbar-heading h4 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--gp-green-950);
}

body.theme-green .page-toolbar-heading p {
  margin: 8px 0 0;
  color: var(--gp-text-soft);
  font-size: 14px;
}

body.theme-green .page-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

body.theme-green .page-toolbar,
body.theme-green .page-toolbar-heading,
body.theme-green .page-toolbar-actions,
body.theme-green .metric-strip,
body.theme-green .metric-card,
body.theme-green .section-shell,
body.theme-green .section-wrapper,
body.theme-green .table-shell,
body.theme-green .table-wrapper,
body.theme-green .table-responsive,
body.theme-green .dataTables_wrapper,
body.theme-green .report-page-shell,
body.theme-green .finalizados-page-shell {
  min-width: 0;
  max-width: 100%;
}

body.theme-green .page-toolbar {
  flex-wrap: wrap;
}

body.theme-green .page-toolbar-actions {
  min-width: 0;
  max-width: 100%;
}

body.theme-green .page-toolbar-actions .dropdown {
  max-width: 100%;
}

body.theme-green .page-toolbar-actions .btn,
body.theme-green .page-toolbar-actions .dropdown-toggle {
  min-height: 44px;
  border-radius: 15px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(18, 49, 38, 0.08);
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

body.theme-green .section-wrapper .row > [class*="col-"],
body.theme-green .section-shell .row > [class*="col-"] {
  min-width: 0;
}

body.theme-green .table-wrapper,
body.theme-green .table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.theme-green .dataTables_wrapper {
  max-width: 100%;
}

body.theme-green table.dataTable,
body.theme-green .table.display,
body.theme-green .table.responsive {
  width: 100% !important;
}

body.theme-green .dataTables_filter,
body.theme-green .dataTables_filter label {
  max-width: 100%;
}

body.theme-green .dataTables_filter label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
  white-space: normal;
}

body.theme-green .dataTables_filter input {
  width: min(230px, 100%) !important;
  max-width: 100% !important;
  min-width: 0;
  margin-left: 0 !important;
  box-sizing: border-box;
  flex: 0 1 230px;
}

body.theme-green .metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 22px;
}

body.theme-green .metric-card {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 22px 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(18, 49, 38, 0.06);
  background:
    radial-gradient(circle at top right, rgba(70, 165, 127, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.96));
  box-shadow: 0 14px 34px rgba(18, 49, 38, 0.07);
}

body.theme-green .metric-card::after {
  content: '';
  position: absolute;
  right: -18px;
  top: -18px;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: rgba(70, 165, 127, 0.06);
}

body.theme-green .metric-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

body.theme-green .metric-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(32, 107, 79, 0.12), rgba(97, 179, 144, 0.18));
  color: var(--gp-green-800);
  font-size: 20px;
  flex-shrink: 0;
}

body.theme-green .metric-card-body {
  position: relative;
  z-index: 1;
}

body.theme-green .metric-card-label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f8378;
}

body.theme-green .metric-card-value {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gp-green-950);
}

body.theme-green .metric-card-subtitle {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--gp-text-soft);
}

body.theme-green .section-shell {
  border: 1px solid rgba(18, 49, 38, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 49, 38, 0.07);
  padding: 24px 26px;
}

body.theme-green .section-shell + .section-shell {
  margin-top: 18px;
}

body.theme-green .section-shell .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

body.theme-green .section-shell .section-subtitle {
  margin: 0 0 18px;
  color: var(--gp-text-soft);
  font-size: 14px;
}

body.theme-green .section-filter-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 251, 249, 0.96), rgba(241, 247, 243, 0.94));
  border: 1px solid rgba(83, 160, 120, 0.12);
  margin-bottom: 18px;
}

body.theme-green .table-shell .table-wrapper,
body.theme-green .table-shell .table-responsive {
  margin-top: 0;
}

@media (max-width: 1199px) {
  body.theme-green .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.theme-green .page-toolbar {
    padding: 20px;
  }

  body.theme-green .page-toolbar,
  body.theme-green .page-toolbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.theme-green .page-toolbar-actions {
    justify-content: flex-start;
  }

  body.theme-green .metric-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.theme-green .dataTables_filter label {
    align-items: stretch;
    justify-content: flex-start;
  }

  body.theme-green .dataTables_filter input {
    width: 100% !important;
    flex-basis: auto;
  }
}

body.theme-green .plans-shell {
  margin-top: 18px;
}

body.theme-green #planos {
  justify-content: flex-start;
  gap: 18px;
  margin-top: 4px;
}

body.theme-green #planos .plano {
  width: calc(33.333% - 12px);
  min-width: 280px;
  border: 1px solid rgba(18, 49, 38, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(70, 165, 127, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.96));
  box-shadow: 0 16px 34px rgba(18, 49, 38, 0.08);
}

body.theme-green #planos .plano .header {
  padding: 24px 24px 20px;
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(153, 225, 196, 0.22), transparent 38%),
    linear-gradient(135deg, #1d684d 0%, #267b59 55%, #4aa778 100%);
}

body.theme-green #planos .plano .header h1 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

body.theme-green #planos .plano .header h2 {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

body.theme-green #planos .plano .header small {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-green #planos .plano .header .edit {
  top: 18px;
  right: 18px;
}

body.theme-green #planos .plano .header .edit button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
  transition: all 0.2s ease;
}

body.theme-green #planos .plano .header .edit button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

body.theme-green #planos .plano .value {
  justify-content: flex-start;
  padding: 24px 24px 8px;
  color: var(--gp-green-900);
}

body.theme-green #planos .plano .value strong {
  font-size: 56px;
}

body.theme-green #planos .plano .features {
  padding: 10px 24px 0;
  text-align: left;
}

body.theme-green #planos .plano .features p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 49, 38, 0.08);
  color: var(--gp-green-900);
}

body.theme-green #planos .plano .features p:last-child {
  margin-bottom: 0;
}

body.theme-green #planos .plano .features p i {
  color: #2f8a6b;
}

body.theme-green #planos .plano .bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 24px;
}

body.theme-green #planos .plano .bottom a {
  border-radius: 16px;
  padding: 13px 20px;
  background: linear-gradient(135deg, #1f6b4f 0%, #2f8a6b 100%);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

body.theme-green #planos .plano .bottom a:hover {
  background: linear-gradient(135deg, #17513c 0%, #22684f 100%);
}

body.theme-green #planos .plano .bottom p {
  margin: 0;
  color: var(--gp-text-soft);
}

body.theme-green #planos .plano .bottom .warning {
  border-top: none;
  border-radius: 16px;
  background: rgba(236, 244, 239, 0.96);
  color: #496154;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  body.theme-green #planos .plano {
    width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  body.theme-green #planos .plano {
    width: 100%;
    min-width: 100%;
  }
}

body.theme-green .sidebar-shell {
  padding-top: 8px !important;
}

body.theme-green .sidebar-profile-card {
  display: none !important;
}

body.theme-green .sidebar-section + .sidebar-section {
  margin-top: 12px !important;
  padding-top: 10px !important;
}

body.theme-green .sidebar-label {
  margin: 0 10px 8px !important;
  color: #71857a !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  opacity: 1 !important;
}

body.theme-green .sidebar-nav-link {
  min-height: 44px !important;
  padding: 8px 12px !important;
}

body.theme-green.dark-mode .sidebar-label {
  color: rgba(234, 249, 241, 0.8) !important;
}

body.theme-green.dark-mode .sidebar-nav-link,
body.theme-green.dark-mode .sidebar-nav-link i,
body.theme-green.dark-mode .sidebar-nav-text {
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .sidebar-nav-icon {
  background: rgba(255, 255, 255, 0.08) !important;
}

body.theme-green.dark-mode .sidebar-nav-link:hover,
body.theme-green.dark-mode .sidebar-nav-link:focus {
  background: rgba(255, 255, 255, 0.05) !important;
}

body.theme-green .sidebar-shell {
  padding-top: 10px !important;
}

body.theme-green .sidebar-profile-card {
  display: none !important;
}

body.theme-green .sidebar-section + .sidebar-section {
  margin-top: 12px !important;
  padding-top: 10px !important;
}

body.theme-green .sidebar-label {
  color: #6f847a !important;
  opacity: 1 !important;
}

body.theme-green.dark-mode .sidebar-label {
  color: #d9efe5 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

body.theme-green.dark-mode .sidebar-nav-link,
body.theme-green.dark-mode .sidebar-nav-link span,
body.theme-green.dark-mode .sidebar-nav-link i {
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .sidebar-nav-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #eaf9f1 !important;
}

body.theme-green.dark-mode .sidebar-nav-link:hover,
body.theme-green.dark-mode .sidebar-nav-link:focus {
  background: rgba(255, 255, 255, 0.06) !important;
}

body.theme-green.dark-mode .sidebar-nav-link.active {
  background: linear-gradient(135deg, rgba(74, 165, 126, 0.28), rgba(34, 95, 70, 0.92)) !important;
  border-color: rgba(157, 215, 190, 0.22) !important;
  color: #ffffff !important;
}

body.theme-green.dark-mode .sidebar-nav-link.active .sidebar-nav-icon,
body.theme-green.dark-mode .sidebar-nav-link.active i {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

body.theme-green.dark-mode .slim-sidebar {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-label {
  color: #6f847a !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link,
body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link span,
body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link i {
  color: #173f30 !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-nav-icon {
  background: linear-gradient(180deg, #f8fbfa 0%, #edf5f1 100%) !important;
  border: 1px solid rgba(18, 76, 57, 0.08) !important;
  color: #2f7658 !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link:hover,
body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link:focus {
  background: rgba(73, 165, 125, 0.08) !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link:hover .sidebar-nav-icon,
body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link:focus .sidebar-nav-icon {
  background: linear-gradient(135deg, rgba(47, 138, 107, 0.14), rgba(157, 215, 190, 0.2)) !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link.active,
body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link.active span,
body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link.active i {
  color: #ffffff !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-nav-link.active .sidebar-nav-icon {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body.theme-green .sidebar-subnav {
  margin: 4px 0 8px 42px;
  padding: 0 0 0 12px;
  list-style: none !important;
  border-left: 1px solid rgba(18, 49, 38, 0.08);
  display: none;
}

body.theme-green .sidebar-subnav.is-open {
  display: block;
}

body.theme-green .sidebar-subnav-item + .sidebar-subnav-item {
  margin-top: 4px;
}

body.theme-green .sidebar-subnav-item {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

body.theme-green .sidebar-subnav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 12px;
  color: #5b7368 !important;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.theme-green .sidebar-nav-link.sidebar-nav-toggle {
  position: relative;
  padding-right: 38px;
}

body.theme-green .sidebar-nav-caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(234, 249, 241, 0.78);
  transition: transform 0.18s ease, color 0.18s ease;
}

body.theme-green .sidebar-nav-item.is-open > .sidebar-nav-link .sidebar-nav-caret {
  transform: translateY(-50%) rotate(180deg);
  color: #ffffff;
}

body.theme-green .sidebar-subnav-link:hover,
body.theme-green .sidebar-subnav-link:focus {
  background: #f5faf7;
  color: var(--gp-green-950) !important;
  text-decoration: none;
  transform: translateX(2px);
}

body.theme-green .sidebar-subnav-link.active {
  background: rgba(47, 138, 107, 0.08);
  color: var(--gp-green-950) !important;
}

body.theme-green .sidebar-subnav-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6f847a;
  flex-shrink: 0;
}

body.theme-green .sidebar-subnav-link.active .sidebar-subnav-icon,
body.theme-green .sidebar-subnav-link:hover .sidebar-subnav-icon,
body.theme-green .sidebar-subnav-link:focus .sidebar-subnav-icon {
  color: var(--gp-green-700);
}

body.theme-green.dark-mode .slim-sidebar .sidebar-subnav {
  border-left-color: rgba(18, 76, 57, 0.08);
}

body.theme-green.dark-mode .slim-sidebar .sidebar-subnav-link {
  color: #345849 !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-subnav-link:hover,
body.theme-green.dark-mode .slim-sidebar .sidebar-subnav-link:focus {
  background: rgba(73, 165, 125, 0.08) !important;
  color: #173f30 !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-subnav-link.active {
  background: rgba(73, 165, 125, 0.12) !important;
  color: #173f30 !important;
}

body.theme-green.dark-mode .slim-sidebar .sidebar-subnav-icon {
  color: #5f7f71 !important;
}

/* Unified app skin after topbar refresh */
body.theme-green {
  background:
    radial-gradient(circle at top center, rgba(37, 115, 90, 0.12), transparent 18%),
    linear-gradient(180deg, #eff8f2 0%, #eaf4ee 180px, #e3efe8 180px, #e3efe8 100%);
}

body.theme-green .slim-sidebar {
  border-right: 0;
  background: linear-gradient(180deg, #0d5f46 0%, #0b4f3a 58%, #08382a 100%);
  box-shadow: 18px 0 38px rgba(7, 39, 29, 0.18);
}

body.theme-green .sidebar-shell {
  height: calc(100vh - 58px);
  padding: 12px 12px 24px;
}

body.theme-green .sidebar-shell::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
}

body.theme-green .sidebar-accordion-shell {
  gap: 12px;
}

body.theme-green .sidebar-search-card {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.theme-green .sidebar-search-icon,
body.theme-green .sidebar-search-input,
body.theme-green .sidebar-search-input::placeholder {
  color: rgba(239, 252, 246, 0.8);
}

body.theme-green .sidebar-dashboard-link {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #f6fffb !important;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.theme-green .sidebar-dashboard-link:hover,
body.theme-green .sidebar-dashboard-link:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

body.theme-green .sidebar-dashboard-link.active {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.26);
  color: #0f5b43 !important;
  box-shadow: 0 12px 24px rgba(6, 33, 24, 0.14);
}

body.theme-green .sidebar-dashboard-icon,
body.theme-green .sidebar-group-icon,
body.theme-green .sidebar-leaf-icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

body.theme-green .sidebar-dashboard-icon i,
body.theme-green .sidebar-group-icon i,
body.theme-green .sidebar-leaf-icon i {
  color: rgba(239, 252, 246, 0.86);
}

body.theme-green .sidebar-dashboard-link.active .sidebar-dashboard-icon,
body.theme-green .sidebar-leaf-link.active .sidebar-leaf-icon {
  background: rgba(15, 91, 67, 0.08);
  border-color: rgba(15, 91, 67, 0.08);
}

body.theme-green .sidebar-dashboard-link.active .sidebar-dashboard-icon i,
body.theme-green .sidebar-leaf-link.active .sidebar-leaf-icon i {
  color: #0f5b43;
}

body.theme-green .sidebar-group {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.theme-green .sidebar-group-toggle,
body.theme-green .sidebar-leaf-link {
  color: #f4fffa !important;
}

body.theme-green .sidebar-group-toggle:hover,
body.theme-green .sidebar-group-toggle:focus,
body.theme-green .sidebar-group.is-active .sidebar-group-toggle,
body.theme-green .sidebar-group.is-open .sidebar-group-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

body.theme-green .sidebar-group-caret {
  color: rgba(239, 252, 246, 0.74);
}

body.theme-green .sidebar-group-menu {
  padding: 0 8px 10px 8px;
}

body.theme-green .sidebar-leaf-link {
  min-height: 40px;
  border-radius: 14px;
}

body.theme-green .sidebar-leaf-link:hover,
body.theme-green .sidebar-leaf-link:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

body.theme-green .sidebar-leaf-link.active {
  background: rgba(255, 255, 255, 0.96);
  color: #0f5b43 !important;
  box-shadow: 0 10px 22px rgba(6, 33, 24, 0.14);
}

body.theme-green .btn,
body.theme-green .dropdown-toggle,
body.theme-green .btn-group > .btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 14px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.theme-green .btn:hover,
body.theme-green .dropdown-toggle:hover {
  transform: translateY(-1px);
}

body.theme-green .btn-primary,
body.theme-green .btn-success,
body.theme-green .btn-info,
body.theme-green .btn-dark {
  background: linear-gradient(135deg, #0f5f47 0%, #1b8d68 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 95, 71, 0.2);
}

body.theme-green .btn-primary:hover,
body.theme-green .btn-success:hover,
body.theme-green .btn-info:hover,
body.theme-green .btn-dark:hover {
  box-shadow: 0 16px 28px rgba(15, 95, 71, 0.24);
}

body.theme-green .btn-secondary,
body.theme-green .btn-light,
body.theme-green .btn-outline-secondary {
  border: 1px solid rgba(15, 95, 71, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #164536;
  box-shadow: 0 10px 22px rgba(18, 49, 38, 0.06);
}

body.theme-green .btn-secondary:hover,
body.theme-green .btn-light:hover,
body.theme-green .btn-outline-secondary:hover {
  color: #10382b;
  border-color: rgba(15, 95, 71, 0.18);
  background: #ffffff;
}

body.theme-green .btn-danger {
  border: none;
  background: linear-gradient(135deg, #cf4242 0%, #b92f2f 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(185, 47, 47, 0.22);
}

body.theme-green .btn-warning {
  border: none;
  background: linear-gradient(135deg, #d58a23 0%, #bb6f08 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(187, 111, 8, 0.22);
}

body.theme-green .table-shell {
  border: 1px solid rgba(18, 49, 38, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 49, 38, 0.07);
  padding: 18px 18px 10px;
}

body.theme-green .dataTables_wrapper .row {
  margin-left: 0;
  margin-right: 0;
}

body.theme-green .dataTables_wrapper .row:first-child,
body.theme-green .dataTables_wrapper .row:last-child {
  padding-left: 0;
  padding-right: 0;
}

body.theme-green .dataTables_length label,
body.theme-green .dataTables_info {
  color: #658177;
  font-size: 13px;
  font-weight: 600;
}

body.theme-green .dataTables_length select,
body.theme-green select.form-control,
body.theme-green .form-control.select2-hidden-accessible + .select2 .select2-selection {
  min-height: 42px;
  border-radius: 14px !important;
}

body.theme-green table.dataTable,
body.theme-green .table.display,
body.theme-green .table.responsive,
body.theme-green .table {
  border-collapse: separate !important;
  border-spacing: 0;
  width: 100% !important;
  margin-top: 14px !important;
}

body.theme-green table.dataTable thead th,
body.theme-green .table thead th {
  padding: 14px 14px !important;
  border-bottom: 1px solid rgba(18, 49, 38, 0.08) !important;
  background: linear-gradient(180deg, rgba(246, 250, 248, 0.96), rgba(240, 247, 243, 0.96));
  color: #5f786d !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.theme-green table.dataTable tbody td,
body.theme-green .table tbody td {
  padding: 15px 14px !important;
  border-top: 1px solid rgba(18, 49, 38, 0.06) !important;
  color: #173126;
  vertical-align: middle;
  background: transparent;
}

body.theme-green table.dataTable tbody tr:first-child td,
body.theme-green .table tbody tr:first-child td {
  border-top: 0 !important;
}

body.theme-green table.dataTable tbody tr,
body.theme-green .table tbody tr {
  transition: background 0.18s ease;
}

body.theme-green table.dataTable tbody tr:hover,
body.theme-green .table tbody tr:hover {
  background: rgba(15, 95, 71, 0.03);
}

body.theme-green .dataTables_paginate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

body.theme-green .dataTables_wrapper .dataTables_paginate .paginate_button {
  min-width: 38px;
  min-height: 38px;
  margin: 0 !important;
  padding: 0 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(18, 49, 38, 0.08) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #285342 !important;
  line-height: 36px;
  font-weight: 700;
}

body.theme-green .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #ffffff !important;
  border-color: rgba(15, 95, 71, 0.14) !important;
  color: #0f5b43 !important;
}

body.theme-green .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body.theme-green .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border-color: rgba(15, 95, 71, 0.1) !important;
  background: linear-gradient(135deg, #0f5f47 0%, #1b8d68 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 22px rgba(15, 95, 71, 0.18);
}

body.theme-green .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
body.theme-green .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  opacity: 0.45;
  box-shadow: none;
}

@media (max-width: 1199px) {
  body.theme-green .sidebar-shell {
    height: calc(100vh - 58px);
  }
}

@media (max-width: 991px) {
  body.theme-green .sidebar-shell {
    height: calc(100vh - 54px);
    padding: 10px 10px 18px;
  }

  body.theme-green .table-shell {
    padding: 14px 14px 8px;
  }
}

body.theme-green {
  background-color: #f0f2f7;
  background-image: none;
}

body.theme-green .slim-sidebar {
  padding: 20px 0;
  border-right: 1px solid #ced4da;
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
  box-shadow: none;
}

body.theme-green .sidebar-label {
  margin-bottom: 15px;
  color: #212529;
  font-weight: 500;
  letter-spacing: 1px;
}

body.theme-green .sidebar-nav-item {
  width: 100%;
}

body.theme-green .sidebar-nav-item:first-child .sidebar-nav-link {
  border-top: 1px solid #dee2e6;
}

body.theme-green .sidebar-nav-item:first-child .sidebar-nav-link.active {
  border-top-width: 0;
}

body.theme-green .sidebar-nav-link {
  margin-bottom: 0;
  padding: 0 20px;
  height: 42px;
  border: 0;
  border-bottom: 1px solid #dee2e6;
  border-radius: 0;
  background: transparent;
  color: #456458 !important;
  box-shadow: none;
  transform: none;
}

body.theme-green .sidebar-nav-link i {
  width: 20px;
  margin-right: 8px;
  color: #2f8a6b !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.theme-green .sidebar-nav-link:hover,
body.theme-green .sidebar-nav-link:focus {
  background: rgba(47, 138, 107, 0.06);
  color: #234c3b !important;
  transform: none;
}

body.theme-green .sidebar-nav-link.active {
  background-color: #eef1f3;
  background-image: linear-gradient(to right, #eef1f3 0%, #e3e8eb 100%);
  border-bottom-width: 0;
  color: #294c40 !important;
  box-shadow: none;
  margin-right: -1px;
}

body.theme-green .sidebar-nav-link.active i {
  color: #2f8a6b !important;
}

body.theme-green .sidebar-nav-sub {
  padding: 0;
  border-bottom: 1px solid #dee2e6;
  background: transparent;
}

body.theme-green .sidebar-nav-sub .nav-sub-link {
  padding: 6px 20px 6px 48px;
  border-radius: 0;
  background: transparent;
  color: #868ba1;
  transform: none;
  gap: 8px;
}

body.theme-green .sidebar-nav-sub .nav-sub-link i {
  width: 16px;
  font-size: 14px;
  text-align: center;
  color: #7aa894;
  flex-shrink: 0;
}

body.theme-green .sidebar-nav-sub .nav-sub-link span {
  min-width: 0;
}

body.theme-green .sidebar-nav-sub .nav-sub-link:hover,
body.theme-green .sidebar-nav-sub .nav-sub-link:focus {
  background: rgba(47, 138, 107, 0.05);
  color: #2f8a6b;
}

body.theme-green .sidebar-nav-sub .nav-sub-link:hover i,
body.theme-green .sidebar-nav-sub .nav-sub-link:focus i {
  color: #2f8a6b;
}

body.theme-green .sidebar-nav-sub .nav-sub-link.active {
  background: #f2f4f6;
  color: #495057;
}

body.theme-green .sidebar-nav-sub .nav-sub-link.active i {
  color: #2f8a6b;
}

body.theme-green .modal {
  z-index: 2000;
}

body.theme-green .modal-backdrop {
  z-index: 1990;
}

body.theme-green .slim-mainpanel .form-control:not(textarea),
body.theme-green .slim-mainpanel input[type="text"],
body.theme-green .slim-mainpanel input[type="password"],
body.theme-green .slim-mainpanel input[type="email"],
body.theme-green .slim-mainpanel input[type="date"],
body.theme-green .slim-mainpanel input[type="number"],
body.theme-green .slim-mainpanel input[type="search"],
body.theme-green .slim-mainpanel select.form-control,
body.theme-green .slim-mainpanel .dataTables_filter input {
  min-height: 38px !important;
  height: 38px;
  padding-top: 0.35rem !important;
  padding-bottom: 0.35rem !important;
  border-radius: 12px !important;
}

body.theme-green .slim-mainpanel textarea.form-control,
body.theme-green .slim-mainpanel textarea {
  border-radius: 12px !important;
}

body.theme-green .slim-mainpanel .select2-container--default .select2-selection--single,
body.theme-green .slim-mainpanel .form-control.select2-hidden-accessible + .select2 .select2-selection--single {
  min-height: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
}

body.theme-green .slim-mainpanel .select2-container--default .select2-selection--single .select2-selection__rendered,
body.theme-green .slim-mainpanel .form-control.select2-hidden-accessible + .select2 .select2-selection__rendered {
  line-height: 36px !important;
  padding-left: 12px !important;
  padding-right: 28px !important;
}

body.theme-green .slim-mainpanel .select2-container--default .select2-selection--single .select2-selection__arrow,
body.theme-green .slim-mainpanel .form-control.select2-hidden-accessible + .select2 .select2-selection__arrow {
  height: 36px !important;
  right: 6px;
}
