/* src/styles.css */
:root {
  --brand-forest-dark: #030c08;
  --brand-forest-medium: #051C12;
  --brand-forest-light: #081810;
  --brand-lime: #B4F105;
  --brand-lime-hover: #c1f824;
  --brand-lime-translucent: rgba(180, 241, 5, 0.15);
  --brand-primary: var(--brand-lime);
  --brand-secondary: var(--brand-forest-light);
  --bs-primary: #B4F105;
  --bs-primary-rgb:
    180,
    241,
    5;
}
body {
  background-color: var(--bs-body-bg, #F4F6F5);
  color: var(--text-main, #0B130F);
  font-family: "Plus Jakarta Sans", sans-serif;
}
app-navbar {
  display: block !important;
  margin-top: -2rem !important;
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
  width: calc(100% + 5rem) !important;
}
@media (max-width: 991.98px) {
  app-navbar {
    margin-top: -1.5rem !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    width: calc(100% + 2.5rem) !important;
  }
}
.navbar-custom {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  grid-template-columns: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 1rem 2.5rem !important;
}
.navbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  flex-grow: 1;
}
.navbar-actions {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem;
}
.badge {
  padding: 0.4em 0.75em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
}
.bg-label-secondary {
  background-color: rgba(108, 117, 125, 0.15) !important;
  color: #495057 !important;
  border: 1px solid rgba(108, 117, 125, 0.2);
}
[data-bs-theme=dark] .bg-label-secondary,
html.dark-style .bg-label-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #cbd5e1 !important;
  border-color: rgba(255, 255, 255, 0.15);
}
.bg-label-success {
  background-color: rgba(25, 135, 84, 0.15) !important;
  color: #0f5132 !important;
  border: 1px solid rgba(25, 135, 84, 0.2);
}
[data-bs-theme=dark] .bg-label-success,
html.dark-style .bg-label-success {
  background-color: rgba(25, 135, 84, 0.22) !important;
  color: #75b798 !important;
  border-color: rgba(25, 135, 84, 0.3);
}
.bg-label-info {
  background-color: rgba(13, 202, 240, 0.15) !important;
  color: #055160 !important;
  border: 1px solid rgba(13, 202, 240, 0.25);
}
[data-bs-theme=dark] .bg-label-info,
html.dark-style .bg-label-info {
  background-color: rgba(13, 202, 240, 0.22) !important;
  color: #6edff6 !important;
  border-color: rgba(13, 202, 240, 0.3);
}
.bg-label-warning {
  background-color: rgba(255, 193, 7, 0.18) !important;
  color: #664d03 !important;
  border: 1px solid rgba(255, 193, 7, 0.25);
}
[data-bs-theme=dark] .bg-label-warning,
html.dark-style .bg-label-warning {
  background-color: rgba(255, 193, 7, 0.22) !important;
  color: #ffda6a !important;
  border-color: rgba(255, 193, 7, 0.3);
}
.bg-label-danger {
  background-color: rgba(220, 53, 69, 0.15) !important;
  color: #842029 !important;
  border: 1px solid rgba(220, 53, 69, 0.25);
}
[data-bs-theme=dark] .bg-label-danger,
html.dark-style .bg-label-danger {
  background-color: rgba(220, 53, 69, 0.22) !important;
  color: #ea868f !important;
  border-color: rgba(220, 53, 69, 0.3);
}
.text-primary {
  color: #3f5e00 !important;
}
[data-bs-theme=dark] .text-primary,
html.dark-style .text-primary {
  color: #B4F105 !important;
}
.bg-primary {
  background-color: #B4F105 !important;
  color: #051C12 !important;
}
.bg-label-primary {
  background-color: rgba(180, 241, 5, 0.2) !important;
  color: #3f5e00 !important;
}
[data-bs-theme=dark] .bg-label-primary,
html.dark-style .bg-label-primary {
  background-color: rgba(180, 241, 5, 0.18) !important;
  color: #B4F105 !important;
}
.form-control,
.form-select,
.select-trigger,
.input-group-text {
  border-radius: var(--radius-lg, 14px) !important;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  border: 1px solid rgba(11, 19, 15, 0.12);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.form-select {
  padding-right: 2.25rem;
  background-position: right 1rem center;
  border-radius: var(--radius-lg, 14px) !important;
}
select option {
  background-color: #ffffff;
  color: #0b130f;
  padding: 8px 12px;
}
[data-bs-theme=dark] select option,
html.dark-style select option {
  background-color: #11221c !important;
  color: #e6f1ed !important;
}
.form-control:focus,
.form-select:focus,
.select-trigger:focus {
  border-color: #B4F105 !important;
  box-shadow: 0 0 0 3px rgba(180, 241, 5, 0.3) !important;
}
.btn-primary {
  background-color: #B4F105 !important;
  border-color: #B4F105 !important;
  color: #051C12 !important;
  border-radius: var(--radius-lg, 14px) !important;
  font-weight: 700;
  transition: all 0.25s ease-in-out;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: #a2d904 !important;
  border-color: #a2d904 !important;
  color: #051C12 !important;
  box-shadow: 0 4px 12px rgba(180, 241, 5, 0.35) !important;
}
.btn-outline-primary {
  color: #3f5e00 !important;
  border-color: #88c400 !important;
  border-radius: var(--radius-lg, 14px) !important;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}
[data-bs-theme=dark] .btn-outline-primary,
html.dark-style .btn-outline-primary {
  color: #B4F105 !important;
  border-color: #B4F105 !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
  background-color: #B4F105 !important;
  border-color: #B4F105 !important;
  color: #051C12 !important;
}
.btn {
  border-radius: var(--radius-lg, 14px);
}
.btn-sm {
  border-radius: var(--radius-md, 10px);
}
.btn-success {
  background-color: var(--brand-lime) !important;
  border-color: var(--brand-lime) !important;
  color: var(--brand-forest-dark) !important;
  font-weight: 700;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
  background-color: var(--brand-lime-hover) !important;
  border-color: var(--brand-lime-hover) !important;
  color: var(--brand-forest-dark) !important;
}
.page-item.active .page-link {
  background-color: #B4F105 !important;
  border-color: #B4F105 !important;
  color: #051C12 !important;
  font-weight: 700 !important;
}
.nav-pills .nav-link.active {
  background-color: #B4F105 !important;
  color: #051C12 !important;
  font-weight: 700 !important;
}
.form-check-input:checked {
  background-color: #B4F105 !important;
  border-color: #B4F105 !important;
}
.form-control[type=date] {
  cursor: pointer;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.15s ease;
}
.form-control[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
[data-bs-theme=dark] .form-control[type=date]::-webkit-calendar-picker-indicator,
html.dark-style .form-control[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
}
.flatpickr-calendar {
  background-color: #ffffff !important;
  border: 1px solid rgba(11, 19, 15, 0.15) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}
[data-bs-theme=dark] .flatpickr-calendar,
html.dark-style .flatpickr-calendar {
  background-color: #11221c !important;
  border-color: rgba(180, 241, 5, 0.25) !important;
  color: #e6f1ed !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
  background: #B4F105 !important;
  border-color: #B4F105 !important;
  color: #051C12 !important;
  font-weight: 700 !important;
}
.flatpickr-day:hover {
  background: rgba(180, 241, 5, 0.2) !important;
}
[data-bs-theme=dark],
html.dark-style {
  --bs-body-bg: #08140e;
  --card-background: #030c08;
  --text-main: #e6f1ed;
  --text-muted-green: #90a89d;
  --border-light: rgba(180, 241, 5, 0.15);
}
[data-bs-theme=dark] body,
html.dark-style body {
  background-color: #08140e !important;
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .text-dark,
html.dark-style .text-dark {
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .card,
html.dark-style .card {
  background-color: #030c08 !important;
  border-color: rgba(180, 241, 5, 0.15) !important;
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .navbar-custom,
html.dark-style .navbar-custom {
  background-color: #08140e !important;
  border-bottom: 1px solid rgba(180, 241, 5, 0.15) !important;
}
[data-bs-theme=dark] .navbar-custom .navbar-profile-name,
html.dark-style .navbar-custom .navbar-profile-name,
[data-bs-theme=dark] .navbar-custom .text-main,
html.dark-style .navbar-custom .text-main {
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .navbar-action-btn,
html.dark-style .navbar-action-btn,
[data-bs-theme=dark] .btn-desktop-toggle,
html.dark-style .btn-desktop-toggle,
[data-bs-theme=dark] .sidebar-toggle-btn,
html.dark-style .sidebar-toggle-btn {
  color: #e6f1ed !important;
  background-color: rgba(180, 241, 5, 0.08) !important;
  border-color: rgba(180, 241, 5, 0.18) !important;
}
[data-bs-theme=dark] .footer-custom,
html.dark-style .footer-custom {
  background-color: #08140e !important;
  border-top: 1px solid rgba(180, 241, 5, 0.15) !important;
  color: #90a89d !important;
}
[data-bs-theme=dark] .table,
html.dark-style .table {
  color: #e6f1ed !important;
  border-color: rgba(180, 241, 5, 0.15) !important;
}
[data-bs-theme=dark] .table th,
[data-bs-theme=dark] .table td,
html.dark-style .table th,
html.dark-style .table td {
  background-color: #030c08 !important;
  color: #e6f1ed !important;
  border-color: rgba(180, 241, 5, 0.12) !important;
}
[data-bs-theme=dark] .table thead th,
html.dark-style .table thead th {
  background-color: #010604 !important;
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .form-control,
[data-bs-theme=dark] .form-select,
[data-bs-theme=dark] .input-group-text,
html.dark-style .form-control,
html.dark-style .form-select,
html.dark-style .input-group-text {
  background-color: #08140e !important;
  border-color: rgba(180, 241, 5, 0.18) !important;
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .form-control:focus,
[data-bs-theme=dark] .form-select:focus,
html.dark-style .form-control:focus,
html.dark-style .form-select:focus {
  border-color: #B4F105 !important;
}
[data-bs-theme=dark] .dropdown-menu,
html.dark-style .dropdown-menu {
  background-color: #030c08 !important;
  border-color: rgba(180, 241, 5, 0.22) !important;
  color: #e6f1ed !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}
[data-bs-theme=dark] .dropdown-item,
html.dark-style .dropdown-item {
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .dropdown-item:hover,
html.dark-style .dropdown-item:hover {
  background-color: rgba(180, 241, 5, 0.15) !important;
  color: #B4F105 !important;
}
[data-bs-theme=dark] .modal-content,
html.dark-style .modal-content {
  background-color: #030c08 !important;
  border-color: rgba(180, 241, 5, 0.22) !important;
  color: #e6f1ed !important;
}
[data-bs-theme=dark] .modal-header,
[data-bs-theme=dark] .modal-footer,
html.dark-style .modal-header,
html.dark-style .modal-footer {
  border-color: rgba(180, 241, 5, 0.18) !important;
}
[data-bs-theme=dark] .btn-close,
html.dark-style .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%) !important;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}
.page-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted-green);
  margin-bottom: 0;
}
html.dark-style .btn-primary:hover,
html.dark-style .btn-secondary:hover,
html.dark-style .btn-success:hover,
html.dark-style .btn-info:hover,
html.dark-style .btn-warning:hover,
html.dark-style .btn-danger:hover,
html.dark-style .btn-outline-primary:hover {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5) !important;
}
html.dark-style .btn:focus,
html.dark-style .btn:active,
html.dark-style .btn.active {
  box-shadow: none !important;
}
html.dark-style .modal-content {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6) !important;
}
html.dark-style .card {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.35) !important;
}
html.dark-style .form-check-input:focus,
html.dark-style .form-check-input:checked,
html.dark-style .form-check-input[type=checkbox]:indeterminate {
  box-shadow: none !important;
}
.card,
.card-body,
.card-filter,
.card-search,
.card.mb-4 {
  overflow: visible !important;
}
.card.mb-4,
.card-filter,
.card-search {
  position: relative;
  z-index: 50 !important;
}
.card {
  position: relative;
  z-index: 1;
}
.table-responsive {
  overflow: visible !important;
  min-height: 180px;
  position: relative;
  z-index: 2;
}
.table td,
.table th {
  position: relative;
}
.table tr:hover {
  z-index: 15;
}
.table .dropdown.show,
.table .dropdown-menu.show {
  z-index: 1080 !important;
}
.table-responsive .dropdown-menu {
  z-index: 1080 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
@media (max-width: 991.98px) {
  .table-responsive {
    overflow-x: auto !important;
    overflow-y: visible !important;
  }
}
.card-forest-summary {
  background-color: #051C12 !important;
  color: #ffffff !important;
  border-radius: var(--radius-lg, 14px) !important;
  box-shadow: 0 4px 15px rgba(5, 28, 18, 0.3) !important;
}
.bg-brand-lime {
  background-color: #B4F105 !important;
}
.text-forest-dark {
  color: #051C12 !important;
}
.text-lime {
  color: #B4F105 !important;
}
.text-muted-lime {
  color: #90a89d !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
