/* src/styles.scss */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 12px;
}
.mt-3 {
  margin-top: 16px;
}
.mt-4 {
  margin-top: 20px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 12px;
}
.mb-3 {
  margin-bottom: 16px;
}
.mb-4 {
  margin-bottom: 20px;
}
.pt-1 {
  padding-top: 8px;
}
.pt-2 {
  padding-top: 12px;
}
.pt-3 {
  padding-top: 16px;
}
.pt-4 {
  padding-top: 20px;
}
.pb-1 {
  padding-bottom: 8px;
}
.pb-2 {
  padding-bottom: 12px;
}
.pb-3 {
  padding-bottom: 16px;
}
.pb-4 {
  padding-bottom: 20px;
}
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-none {
  display: none;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 8px;
}
.gap-2 {
  gap: 12px;
}
.gap-3 {
  gap: 16px;
}
.gap-4 {
  gap: 20px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-primary {
  color: #172b4d;
}
.text-secondary {
  color: #5e6c84;
}
.text-tertiary {
  color: #8993a4;
}
.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.font-weight-normal {
  font-weight: 400;
}
.font-weight-medium {
  font-weight: 500;
}
.font-weight-semibold {
  font-weight: 600;
}
.font-weight-bold {
  font-weight: 700;
}
.border {
  border: 1px solid #dfe1e6;
}
.border-top {
  border-top: 1px solid #dfe1e6;
}
.border-bottom {
  border-bottom: 1px solid #dfe1e6;
}
.border-left {
  border-left: 1px solid #dfe1e6;
}
.border-right {
  border-right: 1px solid #dfe1e6;
}
.rounded-sm {
  border-radius: 4px;
}
.rounded-md {
  border-radius: 6px;
}
.rounded-lg {
  border-radius: 8px;
}
.rounded-xl {
  border-radius: 12px;
}
.rounded-full {
  border-radius: 50%;
}
.bg-white {
  background: white;
}
.bg-gray {
  background: #f4f5f7;
}
.bg-primary {
  background: #0052cc;
}
.bg-blue {
  background: #3b82f6;
}
.bg-green {
  background: #10b981;
}
.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.shadow-lg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #172b4d;
}
.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.app-footer {
  background: #2d3436;
  color: #ddd6fe;
  margin-top: auto;
}

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