/* node_modules/antd/dist/reset.css */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
}
[tabindex="-1"]:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type=text],
input[type=password],
input[type=number],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    Menlo,
    Courier,
    monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}

/* app/javascript/features/dashboard/pages/CompanyWorkers.css */
.workers-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.workers-page__title {
  font-weight: 600;
  font-size: 15px;
  display: block;
  color: #0f172a;
}
.workers-page__subtitle {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}
.workers-page__pending-count {
  color: #d46b08;
  font-weight: 500;
  margin-left: 6px;
}
.workers-page__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.workers-bulk-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 12px 0;
  gap: 12px;
}
.workers-bulk-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.workers-bulk-bar__count {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}
.workers-bulk-bar__clear {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.workers-bulk-bar__clear:hover {
  color: rgba(0, 0, 0, 0.65);
}
.workers-bulk-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.workers-wage {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}
.workers-wage--empty {
  color: rgba(0, 0, 0, 0.35);
  font-size: 13px;
}
.workers-skill {
  font-size: 13px;
  color: #0f172a;
  text-transform: capitalize;
}
.workers-skill__level {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  text-transform: capitalize;
}
.workers-row-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.workers-row-action {
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.35);
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.workers-row-action:hover {
  color: #1677ff;
  background: #e6f4ff;
}
.workers-row-action--approve:hover {
  color: #389e0d;
  background: #f6ffed;
}

/* app/javascript/features/dashboard/pages/Attendance.css */
.attendance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.attendance-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.attendance-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.attendance-subtitle {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.attendance-skill {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
  text-transform: capitalize;
}
.attendance-hours {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}
.attendance-by {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 2px;
}
.attendance-by--reset {
  color: #cf1322;
}
.attendance-absent-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  font-style: italic;
}
.attendance-wage {
  font-size: 13px;
  font-weight: 500;
  color: #389e0d;
}
.attendance-muted {
  color: rgba(0, 0, 0, 0.25);
  font-size: 13px;
}
.attendance-hours-ot {
  color: #fa8c16;
  font-weight: 600;
}
.attendance-empty {
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.attendance-empty__icon {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}
.attendance-empty__title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}
.attendance-empty__desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  max-width: 320px;
  text-align: center;
  line-height: 1.5;
}
.attendance-action {
  background: none;
  border: 1px solid transparent;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.attendance-action--approve {
  color: #389e0d;
  border-color: #b7eb8f;
}
.attendance-action--approve:hover {
  background: #f6ffed;
  border-color: #73d13d;
}
.attendance-action--reject {
  color: #cf1322;
  border-color: #ffa39e;
}
.attendance-action--reject:hover {
  background: #fff1f0;
  border-color: #ff4d4f;
}
.attendance-action--hours {
  color: #1677ff;
  border-color: #91caff;
}
.attendance-action--hours:hover {
  background: #e6f4ff;
  border-color: #4096ff;
}
.attendance-action--edit {
  color: rgba(0, 0, 0, 0.45);
  border-color: transparent;
}
.attendance-action--edit:hover {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.65);
  border-color: #d9d9d9;
}
.attendance-bulk-note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin: 8px 0 0;
}
.attendance-bulk-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 12px 0;
  gap: 12px;
}
.attendance-bulk-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.attendance-bulk-bar__count {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}
.attendance-bulk-bar__clear {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.attendance-bulk-bar__clear:hover {
  color: rgba(0, 0, 0, 0.65);
}
.attendance-bulk-bar__select-all {
  font-size: 12px;
  color: #1677ff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.attendance-bulk-bar__select-all:hover {
  color: #4096ff;
}
.attendance-mark-present-modal .ant-table-row-selected > td,
.attendance-mark-present-modal .ant-table-row-selected:hover > td {
  background: #ffffff !important;
}
.attendance-mark-present-modal .ant-table-tbody > tr:hover > td {
  background: #f5f5f5;
}
.attendance-mark-present-modal .ant-table-thead > tr > th,
.attendance-mark-present-modal .ant-table-thead > tr > th .ant-table-column-title,
.attendance-mark-present-modal .ant-table-tbody > tr > td,
.attendance-mark-present-modal .ant-table-tbody > tr > td .ant-typography,
.attendance-mark-present-modal strong {
  font-weight: 400 !important;
}

/* app/javascript/features/dashboard/pages/Structures.css */
.structures-page {
  padding: 0;
}
.structures-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.structures-list-subtitle {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.structure-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.structure-detail-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.structure-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.structure-detail-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.structure-detail-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 4px;
}
.structure-meta {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}
.s-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0 36px;
  gap: 6px;
}
.s-empty__icon {
  font-size: 38px;
  color: rgba(0, 0, 0, 0.12);
  margin-bottom: 4px;
}
.s-empty__title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
}
.s-empty__desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.3);
  max-width: 320px;
  text-align: center;
  line-height: 1.5;
}
.items-tab-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}
.items-tab-toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.item-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.item-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border-color: #d0d8e8;
}
.item-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.item-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.item-card-actions {
  display: flex;
  gap: 4px;
}
.item-bar-track {
  height: 10px;
  background: #e8e8e8;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}
.item-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.4s ease;
  min-width: 2px;
}
.item-bar-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
}
.item-bar-values {
  color: rgba(0, 0, 0, 0.55);
}
.item-bar-pct {
  font-weight: 700;
  font-size: 13px;
}
.item-no-target {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 10px;
  font-style: italic;
}
.item-foot-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.item-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.item-page-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-detail-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}
.item-page-charts {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  margin-bottom: 28px;
  align-items: start;
}
.item-page-bar-section {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #f0f0f0;
}
.item-page-donut-section {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item-page-section-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.item-page-entries {
  margin-top: 4px;
}
.daily-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 200px;
  padding-bottom: 28px;
  position: relative;
  overflow-x: auto;
}
.daily-chart::after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8e8e8;
}
.daily-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 36px;
  flex-shrink: 0;
}
.daily-bar-wrapper {
  height: 160px;
  width: 28px;
  display: flex;
  align-items: flex-end;
}
.daily-bar-fill {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: #1677ff;
  min-height: 3px;
  transition: height 0.3s;
}
.daily-bar-date {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
.daily-bar-qty {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.55);
}
.daily-chart-empty {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
  font-size: 13px;
}
.donut-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.donut-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}
.donut-sub {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.worker-modal-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.worker-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.worker-badge-assigned {
  font-size: 11px;
  color: #52c41a;
  font-weight: 600;
}
.worker-table-wrap {
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}
.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.simple-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 7px 10px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
  position: sticky;
  top: 0;
}
.simple-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #f8f8f8;
  color: #0f172a;
}
.simple-table tr:last-child td {
  border-bottom: none;
}
.simple-table tr.row-assigned td {
}
.simple-table tr.row-disabled td {
  color: rgba(0, 0, 0, 0.35);
  background: #fafafa;
}
.tab-empty {
  padding: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
}
.muted {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
}

/* app/javascript/features/dashboard/pages/Reports.css */
.reports-page {
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  min-height: calc(100vh - 104px);
}
.reports-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.reports-subtitle {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 2px;
}
.report-muted {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
}
.report-meta-date {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 2px;
}
.reports-empty {
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.reports-empty__icon {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}
.reports-empty__title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}
.reports-empty__desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  max-width: 320px;
  text-align: center;
  line-height: 1.5;
}
.preview-loading {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}
.preview-content {
  padding: 4px 0;
}
.preview-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
}
.preview-table {
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
}
.preview-empty {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  padding: 12px 0;
}
.preview-footer {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
/*# sourceMappingURL=/assets/application.css.map */
