@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* src/styles.scss */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}
.btn:disabled {
  background-color: #E5E7EB;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      #5B91C7 0%,
      #18466C 100%);
  color: #FFFFFF;
}
.btn-primary:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #5B91C7 0%,
      #18466C 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(24, 70, 108, 0.15);
}
.btn-secondary {
  background-color: #C89B3C;
  color: #FFFFFF;
}
.btn-secondary:hover:not(:disabled) {
  background-color: rgb(172.38, 132.6, 48.62);
}
.btn-accent {
  background-color: #26A6BC;
  color: #FFFFFF;
}
.btn-accent:hover:not(:disabled) {
  background-color: rgb(32.3, 141.1, 159.8);
}
.btn-danger {
  background-color: #ef4444;
  color: #FFFFFF;
}
.btn-danger:hover:not(:disabled) {
  background-color: rgb(235.3704433498, 25.5795566502, 25.5795566502);
}
.btn-info {
  background-color: #26A6BC;
  color: #FFFFFF;
}
.btn-info:hover:not(:disabled) {
  background-color: rgb(32.3, 141.1, 159.8);
}
.btn-outline-primary {
  background-color: transparent;
  color: #5B91C7;
  border: 2px solid #5B91C7;
}
.btn-outline-primary:hover:not(:disabled) {
  background-color: #5B91C7;
  color: #FFFFFF;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.app-card {
  margin: 20px;
  background-color: #FFFFFF !important;
  border-radius: 8px !important;
}
.app-card mat-card-header {
  background-color: #EBF9FF;
  border-radius: inherit !important;
  padding: 16px 20px;
}
.app-card mat-card-content {
  padding: 20px;
}
@media (max-width: 768px) {
  .app-card {
    margin: 10px;
  }
  .app-card mat-card-header .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-card mat-card-header .header-content .header-actions {
    width: 100%;
    justify-content: stretch;
  }
  .app-card mat-card-header .header-content .header-actions button {
    flex: 1;
  }
  .app-card mat-card-content {
    padding: 16px;
  }
}
.table-surface-card {
  background-color: #FFFFFF !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(24, 70, 108, 0.1) !important;
}
.table-surface-card mat-card-content {
  padding: 1rem;
}
.data-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.data-list .subsection-title {
  grid-column: 1/-1;
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #5B91C7;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 8px;
}
.data-list .data-item mat-card-content {
  padding: 12px;
}
.data-list .data-item mat-card-content .data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #E5E7EB;
}
.data-list .data-item mat-card-content .data-row:last-child {
  border-bottom: none;
}
.data-list .data-item mat-card-content .data-row .data-label {
  font-weight: 500;
  color: #6B7280;
  font-size: 14px;
}
.data-list .data-item mat-card-content .data-row .data-value {
  color: #18466C;
  font-size: 14px;
}
.data-list .data-item mat-card-content .data-row .data-value.status-active {
  color: #10b981;
  font-weight: 600;
}
.data-list .data-item mat-card-content .data-row .data-value mat-chip-set .permission-chip {
  font-size: 12px;
  min-height: 28px;
}
.data-list .data-item mat-card-content .data-row .data-value mat-chip-set .permission-chip mat-icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (max-width: 768px) {
  .data-list {
    grid-template-columns: 1fr;
  }
}
.icon-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(24, 70, 108, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(24, 70, 108, 0.15);
}
.icon-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.icon-card h2,
.icon-card h3 {
  margin-bottom: 1rem;
  color: #18466C;
}
.icon-card h2 {
  font-size: 1.5rem;
}
.icon-card h3 {
  font-size: 1.25rem;
}
.icon-card p {
  color: #6B7280;
  line-height: 1.5;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-item strong {
  font-weight: 600;
  color: #47729E;
  font-size: 0.9rem;
}
.info-item span {
  color: #18466C;
  font-size: 1rem;
}
.form-section {
  background-color: #F3F6F9;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 20px;
}
.form-section mat-form-field .mat-mdc-form-field-focus-overlay {
  background-color: white;
}
.form-section mat-form-field .mdc-text-field {
  background-color: white;
}
.form-section mat-form-field .mdc-notched-outline__leading,
.form-section mat-form-field .mdc-notched-outline__notch,
.form-section mat-form-field .mdc-notched-outline__trailing {
  border-color: #E5E7EB;
}
.form-section mat-form-field:hover .mdc-notched-outline__leading,
.form-section mat-form-field:hover .mdc-notched-outline__notch,
.form-section mat-form-field:hover .mdc-notched-outline__trailing {
  border-color: #5B91C7;
}
.mat-mdc-option {
  background-color: white !important;
}
.mat-mdc-option:hover {
  background-color: #EBF9FF !important;
}
.mat-mdc-option.mat-mdc-option-active {
  background-color: #B8D7F7 !important;
}
.mat-mdc-select-panel {
  background-color: white !important;
}
.mat-mdc-select-panel .mdc-list {
  background-color: white !important;
}
.form-sections-container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .form-sections-container {
    grid-template-columns: 1fr 1fr;
  }
  .form-sections-container .form-section.full-width {
    grid-column: 1/-1;
  }
}
::ng-deep mat-form-field.mat-form-field-disabled .mat-form-field-wrapper,
::ng-deep .mat-form-field-disabled .mat-form-field-wrapper {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
}
::ng-deep mat-form-field.mat-form-field-disabled .mat-input-element:disabled,
::ng-deep mat-form-field.mat-form-field-disabled .mat-select-disabled,
::ng-deep .mat-form-field-disabled .mat-input-element:disabled,
::ng-deep .mat-form-field-disabled .mat-select-disabled {
  color: #18466C;
  cursor: not-allowed;
}
::ng-deep mat-form-field.mat-form-field-disabled .mdc-text-field--disabled,
::ng-deep .mat-form-field-disabled .mdc-text-field--disabled {
  background-color: rgba(0, 0, 0, 0.04);
}
::ng-deep mat-form-field.mat-form-field-disabled .mdc-text-field--disabled .mdc-text-field__input:disabled,
::ng-deep .mat-form-field-disabled .mdc-text-field--disabled .mdc-text-field__input:disabled {
  color: #18466C;
}
::ng-deep mat-form-field.mat-form-field-disabled .mat-form-field-focus-overlay,
::ng-deep .mat-form-field-disabled .mat-form-field-focus-overlay {
  background-color: transparent !important;
}
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
textarea {
  font-size: 14px;
  font-family: inherit;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
textarea:disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
}
app-unit-selector,
app-ministry-selector,
app-ministry-appointment-selector,
app-assignments-selector {
  width: 100%;
}
app-unit-selector ::ng-deep mat-form-field,
app-ministry-selector ::ng-deep mat-form-field,
app-ministry-appointment-selector ::ng-deep mat-form-field,
app-assignments-selector ::ng-deep mat-form-field {
  width: 100%;
  cursor: pointer;
}
app-unit-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper,
app-ministry-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper,
app-ministry-appointment-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper,
app-assignments-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper {
  cursor: default;
}
app-unit-selector ::ng-deep mat-form-field input,
app-ministry-selector ::ng-deep mat-form-field input,
app-ministry-appointment-selector ::ng-deep mat-form-field input,
app-assignments-selector ::ng-deep mat-form-field input {
  cursor: pointer;
}
app-unit-selector[disabled] ::ng-deep mat-form-field,
app-ministry-selector[disabled] ::ng-deep mat-form-field,
app-ministry-appointment-selector[disabled] ::ng-deep mat-form-field,
app-assignments-selector[disabled] ::ng-deep mat-form-field {
  cursor: not-allowed;
}
app-unit-selector[disabled] ::ng-deep mat-form-field input,
app-ministry-selector[disabled] ::ng-deep mat-form-field input,
app-ministry-appointment-selector[disabled] ::ng-deep mat-form-field input,
app-assignments-selector[disabled] ::ng-deep mat-form-field input {
  cursor: not-allowed;
}
.mat-error {
  font-size: 12px;
  margin-top: 4px;
  color: #ef4444;
}
.mat-hint {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}
.mat-label {
  font-weight: 500;
  color: #18466C;
  font-size: 14px;
}
.mat-form-field-invalid .mat-form-field-label {
  color: #ef4444 !important;
}
.mat-form-field-valid .mat-form-field-label {
  color: #10b981 !important;
}
::ng-deep .mat-mdc-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background {
  border-color: #5B91C7;
  background-color: #5B91C7;
}
::ng-deep .mat-mdc-radio-button.mat-mdc-radio-checked .mat-mdc-radio-button__native-input {
  accent-color: #5B91C7;
}
.form-sections-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-section.full-width {
  grid-column: 1/-1;
}
.form-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 500;
  color: #5B91C7;
}
.form-section h3 mat-icon {
  font-size: 22px;
  width: 22px;
  height: 22px;
}
.form-section .form-row {
  gap: 16px;
}
.form-section .form-row:last-child {
  margin-bottom: 0;
}
.form-section .form-row .form-field {
  width: 100%;
}
.form-section .form-row .form-field.full-width {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .form-section .form-row {
    grid-template-columns: 1fr;
  }
}
.form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  padding: 1rem 0 0;
  background-color: #F3F6F9;
  border-top: 1px solid #E5E7EB;
  margin: 1rem 0 0;
}
.form-actions button {
  min-width: 120px;
}
.form-actions button:disabled {
  opacity: 0.6 !important;
  color: #6B7280 !important;
  background-color: #E5E7EB !important;
  border-color: #E5E7EB !important;
}
.form-actions button[mat-stroked-button]:disabled {
  border-color: #E5E7EB !important;
  color: #6B7280 !important;
}
.form-actions button[mat-raised-button]:disabled {
  background-color: #E5E7EB !important;
  color: #6B7280 !important;
}
.form-actions button .button-spinner {
  display: inline-block;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .form-actions {
    gap: 1rem;
  }
  .form-actions button {
    min-width: 100px;
    flex: 1;
  }
}
.has-form-actions {
  padding-bottom: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-section {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.info-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.info-item:last-child {
  border-bottom: none;
}
.info-item .info-item-icon {
  flex-shrink: 0;
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: var(--mat-sys-primary);
  margin-top: 2px;
}
.info-item .info-item-content {
  flex: 1;
}
.info-item .info-item-content label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.info-item .info-item-content .info-item-value {
  display: block;
  font-size: 13px;
  color: #333;
  word-break: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #18466C;
  margin: 0;
}
h1 {
  font-size: 32px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 28px;
  letter-spacing: -0.25px;
}
h3 {
  font-size: 24px;
  letter-spacing: 0;
}
h4 {
  font-size: 20px;
  letter-spacing: 0.25px;
}
h5 {
  font-size: 16px;
  letter-spacing: 0.15px;
}
h6 {
  font-size: 14px;
  letter-spacing: 0.1px;
}
p {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #18466C;
  margin: 0 0 16px 0;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: #5B91C7;
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease-in-out;
}
a:hover {
  color: #18466C;
  text-decoration: underline;
}
a:active {
  color: #18466C;
}
a:visited {
  color: #18466C;
}
ul,
ol {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #18466C;
  padding-left: 24px;
  margin: 0 0 16px 0;
}
ul li,
ol li {
  margin-bottom: 8px;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
code {
  font-family:
    "Courier New",
    "Courier",
    monospace;
  font-size: 13px;
  background-color: #EBF9FF;
  color: #18466C;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.5;
}
pre {
  font-family:
    "Courier New",
    "Courier",
    monospace;
  font-size: 13px;
  background-color: #EBF9FF;
  color: #18466C;
  padding: 12px 16px;
  border-radius: 4px;
  overflow-x: auto;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
pre code {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
blockquote {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #6B7280;
  border-left: 4px solid #5B91C7;
  padding-left: 16px;
  margin: 0 0 16px 0;
}
.text-primary {
  color: #18466C;
}
.text-secondary {
  color: #47729E;
}
.text-light {
  color: #6B7280;
}
.text-on-primary {
  color: #FFFFFF;
}
.text-success {
  color: #10b981;
}
.text-danger {
  color: #ef4444;
}
.text-warning {
  color: #C89B3C;
}
.text-info {
  color: #26A6BC;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.text-xs {
  font-size: 12px;
}
.text-sm {
  font-size: 13px;
}
.text-base {
  font-size: 14px;
}
.text-lg {
  font-size: 16px;
}
.text-xl {
  font-size: 18px;
}
.text-2xl {
  font-size: 20px;
}
.text-3xl {
  font-size: 24px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.leading-tight {
  line-height: 1.2;
}
.leading-normal {
  line-height: 1.5;
}
.leading-relaxed {
  line-height: 1.75;
}
.leading-loose {
  line-height: 2;
}
.page-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #EBF9FF;
  min-height: 100%;
}
.page-list-card {
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
.feature-page {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 100%;
  width: 100%;
  padding: 1.5rem;
  background-color: #EBF9FF;
  box-sizing: border-box;
}
.feature-page__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .feature-page {
    gap: 1rem;
    padding: 1rem;
  }
}
.page-list-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-list-header__icon {
  flex-shrink: 0;
  font-size: 28px;
  width: 28px;
  height: 28px;
  color: #5B91C7;
}
.page-list-header__text {
  flex: 1;
  min-width: 0;
}
.page-list-header__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #18466C;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}
.page-list-header__subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .page-list-header__icon {
    font-size: 22px;
    width: 22px;
    height: 22px;
  }
  .page-list-header__title {
    font-size: 1.1rem;
  }
  .page-list-header__subtitle {
    display: none;
  }
}
.table-header-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.table-header-actions .btn-label-mobile {
  display: none;
}
@media (max-width: 767px) {
  .table-header-actions .btn-label-desktop {
    display: none;
  }
  .table-header-actions .btn-label-mobile {
    display: inline;
  }
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #6B7280;
  background-color: #EBF9FF;
  border-radius: 4px;
}
.empty-state mat-icon {
  font-size: 48px;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}
.empty-state p {
  margin: 0;
  font-size: 16px;
}
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 16px;
}
.loading-container p {
  color: #6B7280;
  margin: 0;
}
.error-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background-color: rgba(239, 68, 68, 0.09);
  border-radius: 4px;
  color: rgb(188.842364532, 16.157635468, 16.157635468);
  margin-bottom: 20px;
}
.error-container mat-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.error-container p {
  margin: 0;
}
.readonly-field {
  position: relative;
  opacity: 0.7;
}
.readonly-field mat-form-field,
.readonly-field app-ministry-selector,
.readonly-field app-assignments-selector,
.readonly-field app-unit-selector,
.readonly-field app-ministry-appointment-selector {
  filter: grayscale(20%);
}
.readonly-field input:disabled,
.readonly-field .mat-select-disabled,
.readonly-field textarea:disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
}
app-unit-selector ::ng-deep mat-form-field,
app-ministry-selector ::ng-deep mat-form-field,
app-ministry-appointment-selector ::ng-deep mat-form-field,
app-assignments-selector ::ng-deep mat-form-field {
  cursor: pointer;
}
app-unit-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper,
app-ministry-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper,
app-ministry-appointment-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper,
app-assignments-selector ::ng-deep mat-form-field .mat-mdc-form-field-hint-wrapper {
  cursor: default;
}
app-unit-selector[disabled] ::ng-deep mat-form-field,
app-ministry-selector[disabled] ::ng-deep mat-form-field,
app-ministry-appointment-selector[disabled] ::ng-deep mat-form-field,
app-assignments-selector[disabled] ::ng-deep mat-form-field {
  cursor: not-allowed;
}
.shadow-sm {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.shadow-md {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
}
.shadow-lg {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.truncate-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.truncate-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 4px;
}
.p-2 {
  padding: 8px;
}
.p-3 {
  padding: 12px;
}
.p-4 {
  padding: 16px;
}
.p-5 {
  padding: 20px;
}
.p-6 {
  padding: 24px;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}
.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}
.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}
.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 4px;
}
.m-2 {
  margin: 8px;
}
.m-3 {
  margin: 12px;
}
.m-4 {
  margin: 16px;
}
.m-5 {
  margin: 20px;
}
.m-6 {
  margin: 24px;
}
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}
.mx-1 {
  margin-left: 4px;
  margin-right: 4px;
}
.mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}
.mx-3 {
  margin-left: 12px;
  margin-right: 12px;
}
.mx-4 {
  margin-left: 16px;
  margin-right: 16px;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}
.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}
.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.flex-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.gap-1 {
  gap: 4px;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.gap-5 {
  gap: 20px;
}
.hidden {
  display: none !important;
}
.visible {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-100 {
  opacity: 1;
}
.transition {
  transition: all 200ms ease-in-out;
}
.transition-all {
  transition: all 200ms ease-in-out;
}
.transition-color {
  transition: color 200ms ease-in-out;
}
.transition-opacity {
  transition: opacity 200ms ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #18466C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection {
  background-color: #5B91C7;
  color: #FFFFFF;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #E5E7EB;
  border-radius: 4px;
  transition: background-color 200ms ease-in-out;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #6B7280;
}
* {
  scrollbar-color: #E5E7EB transparent;
  scrollbar-width: thin;
}
a {
  color: #5B91C7;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}
a:hover {
  color: #18466C;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
}
th {
  background-color: #EBF9FF;
  font-weight: 600;
  color: #18466C;
}
tr:hover {
  background-color: #EBF9FF;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.shadow-sm {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.shadow-md {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
}
.shadow-lg {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}
.shadow-xl {
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.18);
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-auto {
  z-index: auto;
}
.cursor-auto {
  cursor: auto;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-wait {
  cursor: wait;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.mat-mdc-menu-panel {
  --mat-menu-container-color: #FFFFFF;
  background-color: #FFFFFF !important;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
}
.mat-mdc-menu-item {
  color: #18466C !important;
}
.header-mobile-menu {
  min-width: 270px !important;
}
.header-mobile-menu__user-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  margin: 8px 8px 4px !important;
  cursor: default !important;
  pointer-events: none !important;
  background-color: #EBF9FF !important;
  border-left: 4px solid #5B91C7 !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
}
.header-mobile-menu__avatar {
  flex-shrink: 0 !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: #5B91C7 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1) !important;
  line-height: 1 !important;
}
.header-mobile-menu__details {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  min-width: 0 !important;
  flex: 1 !important;
}
.header-mobile-menu__name {
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #18466C !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  display: block !important;
}
.header-mobile-menu__community {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: #6B7280 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}
.header-mobile-menu__community-icon {
  font-size: 0.8rem !important;
  width: 0.8rem !important;
  height: 0.8rem !important;
  color: #6B7280 !important;
  flex-shrink: 0 !important;
}
html {
  --mat-tooltip-container-color: #424242;
  --mat-tooltip-supporting-text-color: #ffffff;
  --mat-tooltip-container-shape: 4px;
  --mat-tooltip-supporting-text-line-height: 16px;
  --mat-tooltip-supporting-text-size: 12px;
  --mat-tooltip-supporting-text-weight: 400;
}
.mat-mdc-autocomplete-panel {
  background-color: #F3F6F9 !important;
  border-radius: 8px !important;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15) !important;
  margin-top: 8px !important;
  max-height: 300px !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-option {
  min-height: 48px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  color: #18466C !important;
  transition: background-color 0.2s !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-option:hover {
  background-color: #E5E7EB !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-option.mat-mdc-option-active,
.mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected {
  background-color: rgb(238.6, 244, 249.4) !important;
  color: #5B91C7 !important;
  font-weight: 500 !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-option .mdc-list-item__primary-text {
  color: inherit !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-optgroup-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #5B91C7 !important;
  background-color: rgb(245.16, 248.4, 251.64) !important;
  padding: 6px 16px !important;
  min-height: 32px !important;
  border-top: 1px solid rgb(222.2, 233, 243.8) !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-optgroup-label:first-child {
  border-top: none !important;
}
.mat-mdc-autocomplete-panel .mat-mdc-optgroup .mat-mdc-option {
  padding-left: 28px !important;
}
.cdk-overlay-pane:has(.mat-mdc-select-panel) {
  width: auto !important;
  max-width: calc(100vw - 32px) !important;
}
.mat-mdc-select-panel {
  width: max-content !important;
  min-width: 100% !important;
  max-width: calc(100vw - 32px) !important;
  padding: 4px 0 !important;
}
.mat-mdc-select-panel .mat-mdc-option {
  min-height: 34px !important;
  padding: 0 14px !important;
}
.mat-mdc-select-panel .mat-mdc-option .mdc-list-item__primary-text {
  font-size: 13px !important;
  line-height: 18px !important;
  white-space: nowrap !important;
}
.mat-datepicker-content {
  background-color: #F3F6F9 !important;
}
.mat-datepicker-content .mat-calendar {
  background-color: #F3F6F9 !important;
}
.mat-datepicker-content .mat-calendar-body-cell {
  color: #18466C !important;
  background-color: #F3F6F9 !important;
}
.mat-datepicker-content .mat-calendar-body-cell:hover:not(.mat-calendar-body-disabled) {
  background-color: #E5E7EB !important;
}
.mat-datepicker-content .mat-calendar-body-selected {
  background-color: #5B91C7 !important;
  color: white !important;
}
.mat-datepicker-content .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: #5B91C7 !important;
}
.mat-calendar {
  background-color: #F3F6F9 !important;
}
mat-card {
  background-color: #FFFFFF !important;
}
html {
  --mat-dialog-container-color: #FFFFFF;
  --mat-dialog-subhead-color: #5B91C7;
}
:root {
  --mat-snack-bar-container-color: #F9D69A;
  --mat-snack-bar-button-color: black;
  --mat-snack-bar-supporting-text-color: #18466C;
}
.delete-confirm-dialog-panel ::ng-deep .mat-mdc-dialog-container {
  --mdc-dialog-container-max-width: 550px;
  --mdc-dialog-container-min-width: 400px;
}
@media (max-width: 600px) {
  .delete-confirm-dialog-panel ::ng-deep .mat-mdc-dialog-container {
    --mdc-dialog-container-max-width: 90vw;
    --mdc-dialog-container-min-width: 280px;
  }
}
mat-icon {
  font-family: "Material Symbols Outlined" !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-flex;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
html {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
  --mat-sys-primary: #5B91C7;
  --mat-sys-on-primary: #FFFFFF;
  --mat-sys-primary-container: #B8D7F7;
  --mat-sys-on-primary-container: #18466C;
  --mat-sys-secondary: #C89B3C;
  --mat-sys-on-secondary: #FFFFFF;
  --mat-sys-secondary-container: #F9D69A;
  --mat-sys-on-secondary-container: #18466C;
  --mat-sys-tertiary: #26A6BC;
  --mat-sys-on-tertiary: #FFFFFF;
  --mat-sys-tertiary-container: #B8D7F7;
  --mat-sys-on-tertiary-container: #18466C;
  --mat-sys-error: #ef4444;
  --mat-sys-on-error: #FFFFFF;
  --mat-sys-error-container: #ffebee;
  --mat-sys-on-error-container: #ef4444;
  --mat-sys-surface: #FFFFFF;
  --mat-sys-on-surface: #18466C;
  --mat-sys-surface-dim: #F3F6F9;
  --mat-sys-surface-bright: #FFFFFF;
  --mat-sys-outline: #6B7280;
  --mat-sys-outline-variant: #E5E7EB;
}
body {
  color-scheme: light;
  background-color: #EBF9FF;
  color: var(--mat-sys-on-surface);
  font: var(--mat-sys-body-medium);
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}

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