/* src/styles.scss */
:root {
  --mtm-brand: #ff5900;
  --mtm-brand-hover: rgba(255, 89, 0, 0.9);
  --mtm-brand-secondary: #fd5021;
  --color-primary: #ff5900;
  --color-success: #6dc58f;
  --color-warning: #f5bf41;
  --color-danger: #ff4a6d;
  --color-info: #089af9;
  --color-muted: #9ca3af;
  --bg-sidebar: #2e2e53;
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-muted: #eceef4;
  --text-primary: #1c202c;
  --text-secondary: #69699d;
  --text-inverse: #ffffff;
  --text-muted: #9ca3af;
  --border-color: #e2e8f0;
  --border-color-dark: #d4d4de;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-dropdown: 0px 3px 6px rgba(0, 0, 0, 0.16);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --font-family:
    Poppins,
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    sans-serif;
  --font-size-xs: 0.65rem;
  --font-size-sm: 0.75rem;
  --font-size-base: 0.875rem;
  --font-size-lg: 1rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --max-content-width: 1440px;
  --sidebar-width: 240px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
h1 {
  font-size: var(--font-size-2xl);
}
h2 {
  font-size: var(--font-size-xl);
}
h3 {
  font-size: var(--font-size-lg);
}
h4 {
  font-size: var(--font-size-base);
}
h5 {
  font-size: var(--font-size-sm);
}
h6 {
  font-size: var(--font-size-xs);
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul,
ol {
  padding-inline-start: 0;
}
img {
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
.t-uppercase {
  text-transform: uppercase;
}
.t-lowercase {
  text-transform: lowercase;
}
.t-capitalize {
  text-transform: capitalize;
}
._400 {
  font-weight: 400 !important;
}
._500 {
  font-weight: 500 !important;
}
._600,
._bold {
  font-weight: 600 !important;
}
._700 {
  font-weight: 700 !important;
}
._800 {
  font-weight: 800 !important;
}
.f-10 {
  font-size: 10px;
}
.f-11 {
  font-size: 11px;
}
.f-12 {
  font-size: 12px;
}
.f-13 {
  font-size: 13px;
}
.f-14 {
  font-size: 14px;
}
.f-16 {
  font-size: 16px;
}
.f-18 {
  font-size: 18px;
}
.f-20 {
  font-size: 20px;
}
.f-22 {
  font-size: 22px;
}
.f-24 {
  font-size: 24px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.c-mtm-brand {
  color: var(--mtm-brand) !important;
}
.c-mtm-black {
  color: var(--text-primary) !important;
}
.c-mtm-red {
  color: var(--color-danger) !important;
}
.c-mtm-purple {
  color: var(--text-secondary) !important;
}
.c-mtm-green {
  color: var(--color-success) !important;
}
.c-mtm-blue {
  color: var(--color-info) !important;
}
.c-mtm-muted {
  color: var(--text-muted) !important;
}
.c-white {
  color: var(--text-inverse) !important;
}
.b-mtm-brand {
  background-color: var(--mtm-brand) !important;
}
.b-mtm-brand-secondary {
  background-color: var(--mtm-brand-secondary) !important;
}
.b-mtm-black {
  background-color: var(--text-primary) !important;
}
.b-mtm-green {
  background-color: var(--color-success) !important;
}
.b-mtm-grey {
  background-color: var(--bg-muted) !important;
}
.b-mtm-red {
  background-color: var(--color-danger) !important;
}
.b-mtm-blue {
  background-color: var(--color-info) !important;
}
.b-mtm-surface {
  background-color: var(--bg-surface) !important;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-70 {
  opacity: 0.7;
}
.page-container {
  padding: var(--space-lg) var(--space-xl);
  max-width: var(--max-content-width);
  margin: 0 auto;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-end {
  align-items: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-end {
  justify-content: flex-end;
}
.gap-xs {
  gap: var(--space-xs);
}
.gap-sm {
  gap: var(--space-sm);
}
.gap-md {
  gap: var(--space-md);
}
.gap-lg {
  gap: var(--space-lg);
}
.gap-xl {
  gap: var(--space-xl);
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.w-50 {
  width: 50%;
}
.container-inner {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 0.5em;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: sticky;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  line-height: 1.5;
}
.btn:hover {
  text-decoration: none;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-inverse);
}
.btn-primary:hover:not(:disabled) {
  background-color: var(--mtm-brand-hover);
}
.btn-danger {
  background-color: var(--color-danger);
  color: var(--text-inverse);
}
.btn-danger:hover:not(:disabled) {
  background-color: #e8434f;
}
.btn-success {
  background-color: var(--color-success);
  color: var(--text-inverse);
}
.btn-success:hover:not(:disabled) {
  background-color: #5fb380;
}
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color-dark);
  color: var(--text-primary);
}
.btn-outline:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.04);
}
.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-primary:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: var(--text-inverse);
}
.btn-ghost {
  background-color: transparent;
  color: var(--text-primary);
}
.btn-ghost:hover:not(:disabled) {
  background-color: var(--bg-muted);
}
.mtm-button {
  border-radius: 0.25rem;
  padding: 0.25rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.mtm-button:hover {
  opacity: 0.8;
  text-decoration: none;
}
.mtm-button.mtm-main-button {
  color: var(--text-inverse);
  background-color: var(--mtm-brand);
}
.mtm-button.mtm-main-button:hover {
  background-color: var(--mtm-brand-hover) !important;
}
.mtm-button.mtm-white-button {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color-dark);
}
.mtm-button.mtm-grey-button {
  background-color: #cdd3e4;
}
.btn-sm {
  padding: 4px 12px;
  font-size: var(--font-size-sm);
}
.btn-lg {
  padding: 12px 24px;
  font-size: var(--font-size-lg);
}
.form-control {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 89, 0, 0.15);
}
.form-control:disabled {
  background-color: var(--bg-muted);
  cursor: not-allowed;
  opacity: 0.7;
}
.form-control::placeholder {
  color: var(--text-muted);
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-primary);
}
.form-select {
  display: block;
  width: 100%;
  padding: 8px 32px 8px 12px;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--text-primary);
  background-color: var(--bg-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  appearance: none;
}
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 89, 0, 0.15);
}
.mtm-checkbox {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}
.mtm-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color-dark);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  position: relative;
}
.mtm-checkbox input[type=checkbox]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.mtm-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mtm-checkbox-green input[type=checkbox]:checked {
  background-color: var(--color-success);
  border-color: var(--color-success);
}
.mtm-checkbox-red input[type=checkbox]:checked {
  background-color: var(--color-danger);
  border-color: var(--color-danger);
}
.is-invalid {
  border-color: var(--color-danger) !important;
}
.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 74, 109, 0.15) !important;
}
.invalid-feedback {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--color-danger);
}
.glass-panel {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-lg);
}
.mtm-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.mtm-card-header {
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-color);
}
.mtm-card-footer {
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}
.mtm-card-hover {
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  cursor: pointer;
}
.mtm-card-hover:hover,
.mtm-card-hover:focus {
  transform: scale(1.03);
  box-shadow: 0 8px 7px 0 rgba(0, 0, 0, 0.05);
}
.mtm-dropdown-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  border: 1px solid var(--border-color);
  padding: var(--space-sm) 0;
}
.mtm-dropdown-panel .dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.mtm-dropdown-panel .dropdown-item:hover {
  background-color: var(--bg-muted);
}
.mtm-dropdown-panel .dropdown-item.active {
  background-color: rgba(255, 89, 0, 0.1);
  color: var(--color-primary);
}
.mtm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(46, 46, 83, 0.6);
  z-index: 9998;
}
.mtm-modal {
  position: fixed;
  z-index: 9999;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 480px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mtm-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
}
.mtm-modal-body {
  padding: var(--space-lg);
}
.mtm-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-color);
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-in {
  animation: fade-in 0.2s ease-out;
}
.animate-slide-up {
  animation: slide-up 0.2s ease-out;
}
.animate-slide-down {
  animation: slide-down 0.2s ease-out;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
._1-line-text-ellipsis {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 3px;
}
._2-line-text-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
}
._3-line-text-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
}
.pointer {
  cursor: pointer;
}
.cursor-text {
  cursor: text;
}
.cursor-move {
  cursor: move;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.select-none {
  -webkit-user-select: none;
  user-select: none;
}
.select-all {
  -webkit-user-select: all;
  user-select: all;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.custom-scroller {
  overflow-y: auto;
}
.custom-scroller::-webkit-scrollbar {
  display: block;
  width: 6px;
}
.custom-scroller::-webkit-scrollbar-button {
  display: none;
}
.custom-scroller::-webkit-scrollbar-track {
  background-color: transparent;
}
.custom-scroller::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 3px;
}
.custom-scroller::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a0;
}
.border {
  border: 1px solid var(--border-color);
}
.border-top {
  border-top: 1px solid var(--border-color);
}
.border-bottom {
  border-bottom: 1px solid var(--border-color);
}
.border-none {
  border: none !important;
}
.rounded-sm {
  border-radius: var(--radius-sm);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-full {
  border-radius: 9999px;
}
.m-0 {
  margin: 0;
}
.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.mb-sm {
  margin-bottom: var(--space-sm);
}
.mb-md {
  margin-bottom: var(--space-md);
}
.mb-lg {
  margin-bottom: var(--space-lg);
}
.p-0 {
  padding: 0;
}
.p-sm {
  padding: var(--space-sm);
}
.p-md {
  padding: var(--space-md);
}
.p-lg {
  padding: var(--space-lg);
}

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