/* src/styles.scss */
.btn {
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn.btn--with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.btn.btn--with-icon i-lucide {
  color: inherit;
}
.btn[disabled],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background: #1f7a63;
  color: #ffffff;
}
.btn--primary:hover {
  background: #186a55;
}
.btn--primary.btn--outline {
  background: transparent;
  color: #1f7a63;
  border: 1px solid #1f7a63;
}
.btn--primary.btn--outline:hover {
  background: #1f7a63;
  color: #ffffff;
}
.btn--primary.btn--text {
  background: transparent;
  color: #1f7a63;
  border-color: transparent;
}
.btn--primary.btn--text:hover {
  background: color-mix(in srgb, #1f7a63 10%, transparent);
}
.btn--primary:disabled,
.btn--primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--accent {
  background: #ff8a3d;
  color: #ffffff;
}
.btn--accent:hover {
  background: #e6762f;
}
.btn--accent.btn--outline {
  background: transparent;
  color: #ff8a3d;
  border: 1px solid #ff8a3d;
}
.btn--accent.btn--outline:hover {
  background: #ff8a3d;
  color: #ffffff;
}
.btn--accent.btn--text {
  background: transparent;
  color: #ff8a3d;
  border-color: transparent;
}
.btn--accent.btn--text:hover {
  background: color-mix(in srgb, #ff8a3d 10%, transparent);
}
.btn--accent:disabled,
.btn--accent[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--secondary {
  background: white;
  border: 1px solid #1f7a63;
  color: #1f7a63;
}
.btn--secondary:hover {
  background: #1f7a63;
  color: #ffffff;
}
.btn--secondary.btn--outline {
  background: transparent;
  color: #1f7a63;
  border: 1px solid #1f7a63;
}
.btn--secondary.btn--outline:hover {
  background: #1f7a63;
  color: #ffffff;
}
.btn--secondary.btn--text {
  background: transparent;
  color: #1f7a63;
  border-color: transparent;
}
.btn--secondary.btn--text:hover {
  background: color-mix(in srgb, #1f7a63 10%, transparent);
}
.btn--secondary:disabled,
.btn--secondary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--warning {
  background: #f5b700;
  color: #ffffff;
}
.btn--warning:hover {
  background: #e8ae02;
}
.btn--warning.btn--outline {
  background: transparent;
  color: #f5b700;
  border: 1px solid #f5b700;
}
.btn--warning.btn--outline:hover {
  background: #f5b700;
  color: #ffffff;
}
.btn--warning.btn--text {
  background: transparent;
  color: #f5b700;
  border-color: transparent;
}
.btn--warning.btn--text:hover {
  background: color-mix(in srgb, #f5b700 10%, transparent);
}
.btn--warning:disabled,
.btn--warning[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--danger {
  background: #e5484d;
  color: #ffffff;
}
.btn--danger:hover {
  background: #cc383d;
}
.btn--danger.btn--outline {
  background: transparent;
  color: #e5484d;
  border: 1px solid #e5484d;
}
.btn--danger.btn--outline:hover {
  background: #e5484d;
  color: #ffffff;
}
.btn--danger.btn--text {
  background: transparent;
  color: #e5484d;
  border-color: transparent;
}
.btn--danger.btn--text:hover {
  background: color-mix(in srgb, #e5484d 10%, transparent);
}
.btn--danger:disabled,
.btn--danger[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--ghost {
  background: transparent;
  color: #6b7280;
  border-color: transparent;
}
.btn--ghost:hover {
  background: #f1f5f4;
  color: #1a1d1f;
}
.btn--ghost.btn--primary {
  color: #1f7a63;
}
.btn--ghost.btn--primary:hover {
  background: #e8f7f2;
  color: #186a55;
}
.btn--ghost.btn--danger {
  color: #e5484d;
}
.btn--ghost.btn--danger:hover {
  background: #fdecec;
  color: #cc383d;
}
.btn--ghost:disabled,
.btn--ghost[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--sm {
  padding: 6px 12px;
  font-size: 12px;
}
.btn--icon-only {
  padding: 6px;
  line-height: 1;
}
.btn--icon-only.btn--sm {
  padding: 6px;
}
.btn--dashed {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px dashed #dde3e1;
  color: #2a2f33;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    border-color 150ms ease,
    color 150ms ease,
    background 150ms ease;
}
.btn--dashed:hover {
  border-color: #186a55;
  color: #186a55;
  background: #e8f7f2;
}
.btn--dashed:disabled,
.btn--dashed[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.skk__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 16px;
}
.skk__card-title {
  font-size: 18px;
  margin: 0 0 24px;
}
.skk__card--flat {
  box-shadow: none;
  border: 1px solid #dde3e1;
}
.input {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 4px 12px;
  box-sizing: border-box;
  font-size: 14px;
  height: 40px;
  max-width: 1000px;
  background: #f3f3f5;
  outline: none;
}
.input:focus {
  border-color: #1f7a63;
}
.input--error {
  border-color: #e5484d !important;
}
.input::placeholder {
  color: #717182;
  font-size: 14px;
}
.input.input--with-icon-prefix {
  padding-left: 40px;
}
.input-group {
  display: flex;
  flex-direction: column;
}
.input-group .input-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 8px;
}
.input-group .input-label-required {
  color: #e5484d;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  text-align: left;
  font-size: 14px;
  color: #6b7280;
  padding: 12px;
  border-bottom: 1px solid #eef2f1;
}
.table td {
  padding: 16px 12px;
  border-bottom: 1px solid #eef2f1;
  font-size: 14px;
}
.table tr:hover {
  background: #e8f7f2;
}
.badge {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.badge--success {
  background: rgba(31, 122, 99, 0.1);
  color: #1f7a63;
}
.badge--warning {
  background: rgba(245, 183, 0, 0.1);
  color: #f5b700;
}
.badge--error {
  background: rgba(229, 72, 77, 0.1);
  color: #e5484d;
}
.product-cell {
  display: flex;
  flex-direction: column;
}
.product-cell__name {
  font-weight: 600;
  color: #1a1d1f;
}
.product-cell__meta {
  font-size: 12px;
  color: #6b7280;
}
.modal-backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.modal-panel {
  max-width: calc(100vw - 32px);
}
@media (max-width: 576px) {
  .modal-panel {
    max-width: 100vw;
  }
}
.modal-panel--drawer {
  height: 100dvh;
  max-width: 100vw;
  animation: skk-drawer-in 0.22s ease-out;
}
@keyframes skk-drawer-in {
  from {
    transform: translateX(24px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.skk__modal {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  min-width: 500px;
  max-height: calc(100vh - 48px);
}
@media (max-width: 576px) {
  .skk__modal {
    min-width: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
}
@media (max-width: 576px) {
  .skk__modal--compact {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    height: auto;
    max-height: calc(100dvh - 16px);
    border-radius: 10px;
  }
}
.skk__modal__top {
  border-bottom: 1px solid #dde3e1;
  padding: 24px;
}
.skk__modal__top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skk__modal__top-content-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skk__modal__title {
  margin: 0;
  color: #2a2f33;
}
.skk__modal__title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.skk__modal__close {
  padding: 8px;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}
.skk__modal__close:hover {
  background: #f6f8f7;
}
.skk__modal__close:hover i-lucide {
  color: #e5484d;
}
.skk__modal__close i-lucide {
  width: 20px;
  height: 20px;
}
.skk__modal > form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.skk__modal__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.skk__modal__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid #dde3e1;
  padding: 16px 24px 24px;
}
@media (max-width: 576px) {
  .skk__modal:not(.skk__modal--compact) .skk__modal__buttons {
    flex-direction: column-reverse;
    padding-left: 16px;
    padding-right: 16px;
  }
  .skk__modal:not(.skk__modal--compact) .skk__modal__buttons > .btn,
  .skk__modal:not(.skk__modal--compact) .skk__modal__buttons > skk-submit-button {
    width: 100%;
  }
  .skk__modal:not(.skk__modal--compact) .skk__modal__buttons > .btn {
    justify-content: center;
  }
}
.skk__modal--drawer {
  width: 540px;
  max-width: 100vw;
  height: 100dvh;
  max-height: none;
  border-radius: 0;
}
@media (max-width: 576px) {
  .skk__modal--drawer {
    width: 100vw;
    max-height: 100dvh;
  }
}
.skk__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  background-color: #ececf0;
  color: #717182;
  line-height: 1;
}
.skk__badge i-lucide {
  color: #717182;
}
.skk__badge--blue {
  background-color: #dbeafe;
  color: #1f60ec;
}
.skk__badge--blue i-lucide {
  color: #1f60ec;
}
.skk__badge--amber {
  background-color: #fff6da;
  color: #e18700;
}
.skk__badge--amber i-lucide {
  color: #e18700;
}
.skk__badge--green {
  background-color: #e8f7f2;
  color: #186a55;
}
.skk__badge--green i-lucide {
  color: #186a55;
}
.skk__badge--red {
  background-color: #fdecec;
  color: #cc383d;
}
.skk__badge--red i-lucide {
  color: #cc383d;
}
.skk__badge--gray {
  background-color: #ececf0;
  color: #717182;
}
.skk__badge--gray i-lucide {
  color: #717182;
}
.skk__badge--purple {
  background-color: #ede9fe;
  color: #7c3aed;
}
.skk__badge--purple i-lucide {
  color: #7c3aed;
}
@media (max-width: 768px) {
  .btn--icon-only-mobile {
    padding: 10px 12px;
  }
  .btn--icon-only-mobile > span:not(.skk-plan-badge) {
    display: none;
  }
}
.skk-plan-badge {
  position: absolute;
  top: 0;
  right: 8px;
  transform: translateY(-55%);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid #ffffff;
  box-shadow: 0 1px 4px rgba(31, 41, 55, 0.18);
  pointer-events: none;
}
.skk__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  max-width: 2000px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .skk__container {
    padding: 16px 12px;
    gap: 16px;
  }
}
.skk__page-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.skk__page-title h1 {
  margin: 0;
}
.skk__text--muted {
  color: #6b7280;
}
.skk__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1f7a63;
  text-decoration: none;
}
.skk__link:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .col-hide-tablet {
    display: none !important;
  }
  .modal-panel--fullscreen-tablet {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
  }
}
@media (max-width: 768px) {
  .col-hide-mobile {
    display: none !important;
  }
}
i-lucide svg,
lucide-icon svg,
lucide-angular svg,
span-lucide svg {
  display: block;
  width: inherit;
  height: inherit;
}
i-lucide,
lucide-icon,
lucide-angular,
span-lucide {
  color: #6b7280;
}
:root {
  --ev-zadanie: #1f7a63;
  --ev-zadanie-bg: #e8f7f2;
  --ev-zadanie-strong: #114e40;
  --ev-zlecenie: #b07d2b;
  --ev-zlecenie-bg: #f7efe0;
  --ev-zlecenie-strong: #835713;
}
.kind--task {
  --ev: var(--ev-zadanie);
  --ev-bg: var(--ev-zadanie-bg);
  --ev-strong: var(--ev-zadanie-strong);
}
.kind--derived {
  --ev: var(--ev-zlecenie);
  --ev-bg: var(--ev-zlecenie-bg);
  --ev-strong: var(--ev-zlecenie-strong);
}
.calendar-surface .fc {
  --fc-border-color: #eef2f1;
  --fc-page-bg-color: #ffffff;
  --fc-today-bg-color: #e8f7f2;
  --fc-neutral-bg-color: #f6f8f7;
  --fc-button-bg-color: #1f7a63;
  --fc-button-border-color: #1f7a63;
  --fc-button-hover-bg-color: #186a55;
  --fc-button-hover-border-color: #186a55;
  --fc-button-active-bg-color: #114e40;
  --fc-button-active-border-color: #114e40;
  font-family: inherit;
}
.calendar-surface .fc .fc-scrollgrid {
  border: none;
}
.calendar-surface .fc .fc-toolbar-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1d1f;
}
.calendar-surface .fc .fc-daygrid-day-frame {
  min-height: 92px;
  padding: 2px;
}
.calendar-surface .fc .fc-daygrid-day-number,
.calendar-surface .fc .fc-col-header-cell-cushion {
  color: #2a2f33;
  text-decoration: none;
  padding: 6px 8px;
}
.calendar-surface .fc .fc-day-past {
  background: #f9fafb;
}
.calendar-surface .fc .fc-day-past .fc-daygrid-day-number {
  opacity: 0.5;
}
.calendar-surface .fc .fc-daygrid-day {
  transition: background-color 0.12s ease;
  cursor: pointer;
}
.calendar-surface .fc .fc-daygrid-day:hover {
  background: #f1f5f4;
}
.calendar-surface .fc .fc-daygrid-day-top {
  position: relative;
}
.calendar-surface .fc .fc-day-add {
  position: absolute;
  left: 4px;
  top: 2px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  color: #186a55;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: none;
  place-items: center;
}
.calendar-surface .fc .fc-daygrid-day:hover .fc-day-add {
  display: grid;
}
.calendar-surface .fc .fc-day-add:hover {
  background: #e8f7f2;
}
.calendar-surface .fc .fc-event {
  background: var(--ev-bg);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}
.calendar-surface .fc .fc-event:hover {
  filter: brightness(0.97);
}
.calendar-surface .fc .skk-ev {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
  min-width: 0;
}
.calendar-surface .fc .skk-ev__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ev);
  flex-shrink: 0;
}
.calendar-surface .fc .skk-ev__zl {
  font-size: 10px;
  font-weight: 800;
  color: var(--ev);
  flex-shrink: 0;
}
.calendar-surface .fc .skk-ev__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ev-strong);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.calendar-surface .fc .skk-ev__time {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-right: 3px;
}
.calendar-surface .fc .skk-ev__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--ev);
  background: transparent;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  color: #fff;
}
.calendar-surface .fc .fc-ev--payment_due {
  background: transparent;
  border: 1px dashed color-mix(in srgb, var(--ev) 50%, transparent);
}
.calendar-surface .fc .fc-ev--payment_due:hover {
  filter: none;
  background: var(--ev-bg);
}
.calendar-surface .fc .fc-ev--done {
  opacity: 0.6;
  background: #f6f8f7;
}
.calendar-surface .fc .fc-ev--done .skk-ev__dot {
  background: #6b7280;
}
.calendar-surface .fc .fc-ev--done .skk-ev__label {
  color: #6b7280;
  text-decoration: line-through;
}
.calendar-surface .fc .fc-timegrid-axis-cushion,
.calendar-surface .fc .fc-timegrid-slot-label-cushion {
  font-size: 12px;
  color: #6b7280;
}
.calendar-surface .fc .fc-timegrid-slot {
  height: 2.3em;
}
.calendar-surface .fc .fc-timegrid-now-indicator-line,
.calendar-surface .fc .fc-timegrid-now-indicator-arrow {
  border-color: #cc383d;
}
.calendar-surface .fc .fc-timegrid-event {
  box-shadow: none;
  border-radius: 6px;
  overflow: hidden;
}
.calendar-surface .fc .fc-timegrid-event .skk-ev {
  align-items: center;
  padding: 3px 5px;
}
.calendar-surface .fc .fc-timegrid-event .skk-ev__time {
  white-space: nowrap;
}
skk-root {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
html {
  height: 100%;
}
body {
  height: 100%;
  font-family: "Inter", sans-serif;
  margin: 0;
  overflow: hidden;
}

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