.cp-nt-container {
  padding-top: 2rem;
}

.cp-nt-table-wrapper {
  overflow: auto;
}

.cp-nt-unit-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.cp-nt-unit-label {
  pointer-events: none;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background-color: #DEE2E8;
  text-align: center;
}
.cp-nt-unit-label h5 {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #6B7280;
  white-space: nowrap;
}

.cp-nt-table {
  border-collapse: collapse;
  border-spacing: 0;
  font-family: sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: max(50rem, 100%);
  table-layout: fixed;
  background: white;
  color: #424242;
}

.cp-nt-col-property {
  width: 11rem;
}

.cp-nt-col-operation {
  width: 9rem;
}

.cp-nt-thead th {
  border: 1px solid #ccc;
  vertical-align: bottom;
  padding: 0.7rem 1rem;
}

.cp-nt-th-property {
  padding: 0.25rem;
  text-transform: uppercase;
  font-size: 1rem;
}

.cp-nt-th-workstation {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.cp-nt-th-operation-chip {
  padding: 0.3rem 0.6rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.cp-nt-tbody {
  background-color: white;
}
.cp-nt-tbody td {
  border: 1px solid #ccc;
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
}

.cp-nt-row:hover {
  background-color: #F2F7F9;
}

.cp-nt-td-property {
  text-align: left;
}

.cp-nt-property-content {
  width: min-content;
  white-space: nowrap;
}

.cp-nt-td-value {
  text-align: left;
  width: 5rem;
}

.pri-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pri-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 1.25rem 1.5rem;
  background: #F1F4F8;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.pri-card > div {
  align-items: center;
}
.pri-card > div:nth-child(1) {
  flex: 2;
}
.pri-card > div:nth-child(2) {
  flex: 1;
  text-align: left;
}
.pri-card > div:nth-child(3) {
  flex: 2;
  justify-content: end;
}
.pri-card:hover {
  background: #E8ECF2;
}

.pri-card__info {
  cursor: default;
}

.pri-card__order {
  font-weight: 400;
  font-size: 1.33rem;
}

.pri-card__main {
  min-width: 0;
}

.pri-card__name-line {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  min-width: 0;
}

.pri-card__name {
  font-weight: 500;
  font-size: 1.33rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pri-card__labels {
  font-weight: 300;
  font-size: 1.17rem;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pri-card__chips-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.2rem;
}

.pri-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-size: 1rem;
  white-space: nowrap;
  border: 1px solid #D1D5DB;
  background: white;
  color: #374151;
}

.pri-card__chip--coop {
  border-color: #F59E0B;
  color: #B45309;
}

.pri-card__counts {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.pri-card__counts-items {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  background: #E5E7EB;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.17rem;
}

.pri-card__counts-price {
  font-size: 1.17rem;
  color: #374151;
}

.pri-card__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pri-card__step-chips {
  display: flex;
  gap: 0.25rem;
}

.pri-card__progress {
  display: flex;
  align-items: baseline;
}

.pri-card__progress-current {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #1F2937;
}

.pri-card__progress-total {
  font-size: 1rem;
  font-weight: 400;
  color: #9CA3AF;
}

.pri-card__actions {
  cursor: default;
}

.pri-card__detail {
  grid-column: 1/-1;
  overflow: hidden;
  animation: pri-expand 0.25s ease-out forwards;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

@keyframes pri-expand {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 3000px;
    opacity: 1;
  }
}
.pri-detail__section {
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  background: #FFFFFF;
  border-radius: 8px;
}

.pri-detail__section-title {
  font-weight: 600;
  font-size: 1.33rem;
  margin-bottom: 0.5rem;
}

.pri-detail__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 2rem 0;
  flex-wrap: wrap;
}

.pri-detail__header-label {
  font-size: 1rem;
  color: #374151;
  white-space: nowrap;
}

.pri-detail__steps {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2.5rem;
  gap: 0.5rem;
}
.pri-detail__steps::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #C7CAD1;
}
.pri-detail__steps .tech-process-timeline__line {
  display: none;
}
.pri-detail__steps .tech-process-timeline__container {
  flex-direction: row;
}

.pri-detail__step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border-radius: 8px;
  border-bottom: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.pri-detail__step-row > div:first-child {
  flex: 2;
}
.pri-detail__step-row > div:nth-child(2) {
  flex: 1;
  text-align: left;
}
.pri-detail__step-row > div:nth-child(3) {
  flex: 1;
}

.pri-detail__step-timeline {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.pri-detail__step-num {
  font-weight: 600;
  font-size: 1.17rem;
  min-width: 2ch;
  text-align: center;
  flex: 0 0 auto;
}

.pri-detail__step-chips {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
}

.pri-detail__step-counts {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 1.17rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pri-detail__step-counts-label {
  color: #9CA3AF;
  font-size: 1rem;
}

.pri-detail__step-discount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.17rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pri-detail__step-discount-label {
  color: #9CA3AF;
  font-size: 1rem;
}

.pri-detail__step-discount-input {
  width: 7ch;
  margin-top: 0;
  margin-bottom: 0;
}
.pri-detail__step-discount-input .mud-input {
  font-size: 1rem;
  padding: 0.15rem 0.3rem;
  background: #F3F4F6;
  border-radius: 4px;
  font-weight: 500;
}
.pri-detail__step-discount-input .mud-input-adornment-text {
  font-weight: 500;
}
.pri-detail__step-discount-input .mud-input-underline::before,
.pri-detail__step-discount-input .mud-input-underline::after {
  display: none;
}

.pri-detail__step-discount-avatar {
  width: 1.5rem !important;
  height: 1.5rem !important;
  font-size: 0.65rem !important;
}

.pri-detail__step-price {
  font-weight: 600;
  font-size: 1.17rem;
  min-width: 8ch;
  text-align: right;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pri-detail__step-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex: 0 0 auto;
}

.pri-detail__attachments {
  margin-top: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.pri-detail__attachments-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pri-detail__files {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.pri-detail__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 5rem;
  font-size: 0.75rem;
  text-align: center;
  overflow: hidden;
}
.pri-detail__file .mud-svg-icon {
  font-size: 4rem !important;
}

.pri-detail__no-files {
  color: #9CA3AF;
  font-size: 1rem;
  padding: 0.25rem 0;
}

.pri-detail__skeleton-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.pri-detail__skeleton-circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #E5E7EB;
  animation: pri-pulse 1.5s ease-in-out infinite;
}

.pri-detail__skeleton-bar {
  height: 1rem;
  border-radius: 0.25rem;
  background: #E5E7EB;
  animation: pri-pulse 1.5s ease-in-out infinite;
}

@keyframes pri-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .pri-card {
    grid-template-columns: auto auto auto 1fr;
  }
  .pri-card__step {
    display: none;
  }
  .pri-card__counts {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=custom-production.css.map */
