Files
TK-Project/demo/styles/devonthink.css
hyungi 65103af5c0 프레젠테이션 슬라이드 개선: 세로 플로우차트로 변경 및 프로세스 최적화
- 외주/자체제작 프로세스를 가로에서 세로 방향으로 변경
- 이모지 제거하여 전문적인 프레젠테이션 스타일 적용
- 화살표 방향을 → 에서 ↓ 로 변경
- 불필요한 견적 요청 문구 제거
- 자체제작 프로세스 최적화: 8단계 → 7단계로 단순화
- 최종 검사를 검수 및 보관 단계에 통합
- 상세한 프로세스 내용 복원 및 가독성 향상
2025-09-16 06:15:19 +09:00

4908 lines
90 KiB
CSS

/* DevonThink 스타일 CSS - 회색, 하늘색 위주 */
:root {
/* DevonThink 컬러 팔레트 */
--dt-primary: #4A90E2; /* 하늘색 */
--dt-primary-light: #7BB3F0; /* 연한 하늘색 */
--dt-primary-dark: #357ABD; /* 진한 하늘색 */
--dt-gray-50: #F8F9FA; /* 매우 연한 회색 */
--dt-gray-100: #F1F3F4; /* 연한 회색 */
--dt-gray-200: #E8EAED; /* 회색 */
--dt-gray-300: #DADCE0; /* 중간 회색 */
--dt-gray-400: #BDC1C6; /* 진한 회색 */
--dt-gray-500: #9AA0A6; /* 더 진한 회색 */
--dt-gray-600: #80868B; /* 텍스트 회색 */
--dt-gray-700: #5F6368; /* 진한 텍스트 회색 */
--dt-gray-800: #3C4043; /* 매우 진한 회색 */
--dt-gray-900: #202124; /* 거의 검은색 */
--dt-success: #34A853; /* 성공 (초록) */
--dt-warning: #FBBC04; /* 경고 (노랑) */
--dt-danger: #EA4335; /* 위험 (빨강) */
/* 그림자 */
--dt-shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
--dt-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.15);
--dt-shadow-lg: 0 4px 6px -1px rgba(60, 64, 67, 0.15);
/* 폰트 */
--dt-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--dt-font-family);
background-color: var(--dt-gray-50);
color: var(--dt-gray-800);
line-height: 1.5;
display: flex;
height: 100vh;
overflow: hidden;
}
/* 워크플로우 상세 페이지용 스타일 */
.workflow-detail-page {
width: 100%;
min-height: 100vh;
overflow-y: auto;
padding: 20px;
display: block;
}
/* 워크플로우 페이지일 때 body 스타일 재정의 */
body.workflow-page {
height: auto !important;
overflow: visible !important;
display: block !important;
}
/* 캘린더 스타일 */
.calendar-container {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: var(--dt-shadow);
margin: 20px 0;
max-width: 800px;
}
.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.calendar-nav-btn {
background: var(--dt-gray-200);
border: none;
border-radius: 6px;
padding: 8px 12px;
cursor: pointer;
font-size: 16px;
color: var(--dt-gray-700);
transition: background-color 0.2s;
}
.calendar-nav-btn:hover {
background: var(--dt-gray-300);
}
.calendar-title {
font-size: 1.2em;
font-weight: 600;
color: var(--dt-gray-800);
margin: 0;
}
.calendar-month {
width: 100%;
}
.calendar-table {
width: 100% !important;
border-collapse: collapse !important;
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--dt-shadow-sm);
display: table !important;
}
.calendar-table th {
background: var(--dt-gray-100);
color: var(--dt-gray-700);
font-weight: 600;
padding: 12px 8px;
text-align: center;
font-size: 14px;
border-bottom: 2px solid var(--dt-gray-200);
}
.calendar-table td {
width: 14.28%;
height: 50px;
text-align: center;
vertical-align: middle;
border: 1px solid var(--dt-gray-200);
cursor: pointer;
transition: all 0.2s;
position: relative;
font-size: 14px;
color: var(--dt-gray-800);
background: var(--dt-gray-50);
}
.calendar-table td:hover {
background: var(--dt-gray-100);
}
.calendar-table td.other-month {
color: var(--dt-gray-400);
background: var(--dt-gray-100);
}
.calendar-table td.has-event {
background: var(--dt-gray-500) !important;
color: white;
font-weight: 600;
border: 2px solid var(--dt-gray-600);
}
.calendar-table td.has-event:hover {
background: var(--dt-gray-600) !important;
transform: scale(1.05);
}
.calendar-table td.has-event::before {
content: "●";
position: absolute;
top: 3px;
right: 5px;
color: var(--dt-warning);
font-size: 10px;
}
.calendar-table td.has-event::after {
content: attr(data-event);
position: absolute;
bottom: -35px;
left: 50%;
transform: translateX(-50%);
background: var(--dt-gray-800);
color: white;
padding: 6px 10px;
border-radius: 6px;
font-size: 11px;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
z-index: 100;
box-shadow: var(--dt-shadow-lg);
}
.calendar-table td.has-event:hover::after {
opacity: 1;
}
.calendar-legend {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 20px;
}
.legend-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: var(--dt-gray-600);
}
.legend-color {
width: 16px;
height: 16px;
border-radius: 4px;
}
.legend-color.has-event {
background: var(--dt-gray-500);
border: 2px solid var(--dt-gray-600);
}
/* 워크플로우 1단계 UI 개선 */
.simple-note {
background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
border-left: 4px solid var(--dt-success);
padding: 20px;
border-radius: 12px;
margin: 20px 0;
box-shadow: var(--dt-shadow-sm);
}
.concept-explanation {
display: grid;
gap: 30px;
margin: 30px 0;
}
.concept-step {
background: white;
border-radius: 16px;
padding: 30px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.concept-step::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--dt-primary), var(--dt-primary-light));
}
.concept-step:hover {
transform: translateY(-4px);
box-shadow: var(--dt-shadow-lg);
}
.concept-step h4 {
color: var(--dt-primary);
font-size: 1.3em;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 10px;
}
.concept-content p {
font-size: 1.1em;
color: var(--dt-gray-700);
margin-bottom: 20px;
line-height: 1.6;
}
.concept-list {
list-style: none;
padding: 0;
margin: 20px 0;
}
.concept-list li {
background: var(--dt-gray-50);
padding: 12px 20px;
margin: 8px 0;
border-radius: 8px;
border-left: 3px solid var(--dt-primary-light);
transition: all 0.2s ease;
}
.concept-list li:hover {
background: var(--dt-gray-100);
transform: translateX(5px);
}
.example-box {
background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
border: 2px solid var(--dt-warning);
border-radius: 12px;
padding: 20px;
margin: 20px 0;
}
.example-box h5 {
color: #92400e;
margin-bottom: 15px;
font-size: 1.1em;
}
.example-list {
list-style: none;
padding: 0;
}
.example-list li {
background: white;
padding: 10px 15px;
margin: 8px 0;
border-radius: 6px;
border-left: 3px solid var(--dt-warning);
font-size: 0.95em;
}
.process-flow {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin: 25px 0;
flex-wrap: wrap;
}
.flow-item {
background: linear-gradient(135deg, var(--dt-primary) 0%, var(--dt-primary-light) 100%);
color: white;
padding: 12px 20px;
border-radius: 25px;
font-weight: 600;
font-size: 0.9em;
box-shadow: var(--dt-shadow-sm);
transition: all 0.3s ease;
min-width: 140px;
text-align: center;
}
.flow-item:hover {
transform: translateY(-2px);
box-shadow: var(--dt-shadow);
}
.flow-arrow {
font-size: 1.5em;
color: var(--dt-primary);
font-weight: bold;
}
.benefit-note {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border: 2px solid var(--dt-primary-light);
border-radius: 10px;
padding: 15px 20px;
margin-top: 20px;
color: var(--dt-primary-dark);
font-weight: 500;
}
.key-benefits {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
border-radius: 16px;
padding: 30px;
margin: 40px 0;
border: 1px solid var(--dt-gray-200);
}
.key-benefits h4 {
color: var(--dt-primary);
font-size: 1.4em;
margin-bottom: 25px;
text-align: center;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.benefit-item {
background: white;
border-radius: 12px;
padding: 25px;
text-align: center;
box-shadow: var(--dt-shadow-sm);
border: 1px solid var(--dt-gray-200);
transition: all 0.3s ease;
}
.benefit-item:hover {
transform: translateY(-4px);
box-shadow: var(--dt-shadow);
}
.benefit-icon {
font-size: 2.5em;
margin-bottom: 15px;
display: block;
}
.benefit-content h5 {
color: var(--dt-gray-800);
font-size: 1.1em;
margin-bottom: 10px;
}
.benefit-content p {
color: var(--dt-gray-600);
font-size: 0.95em;
line-height: 1.5;
}
/* 의사결정 매트릭스 스타일 */
.decision-process {
margin: 30px 0;
}
.decision-step {
background: white;
border-radius: 16px;
padding: 30px;
margin: 25px 0;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
position: relative;
}
.decision-step::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #10b981, #34d399);
}
.decision-step h4 {
color: #059669;
font-size: 1.3em;
margin-bottom: 20px;
}
.analysis-factors {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 20px 0;
}
.factor-group {
background: var(--dt-gray-50);
border-radius: 12px;
padding: 20px;
border-left: 4px solid var(--dt-primary);
}
.factor-group h5 {
color: var(--dt-primary);
margin-bottom: 15px;
font-size: 1.1em;
}
.factor-list {
list-style: none;
padding: 0;
}
.factor-list li {
padding: 8px 0;
color: var(--dt-gray-700);
border-bottom: 1px solid var(--dt-gray-200);
font-size: 0.95em;
}
.factor-list li:last-child {
border-bottom: none;
}
.matrix-example {
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: var(--dt-shadow-sm);
border: 1px solid var(--dt-gray-200);
}
.matrix-example h5 {
color: var(--dt-primary);
margin-bottom: 20px;
font-size: 1.2em;
}
.matrix-table {
width: 100%;
border-collapse: collapse;
background: white;
border-radius: 8px;
overflow: hidden;
}
.matrix-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
gap: 1px;
background: var(--dt-gray-200);
}
.matrix-row.header {
background: var(--dt-primary);
}
.matrix-row.header .matrix-cell {
background: var(--dt-primary);
color: white;
font-weight: 600;
padding: 15px 10px;
}
.matrix-row.total {
background: var(--dt-gray-300);
}
.matrix-row.total .matrix-cell {
background: var(--dt-gray-100);
font-weight: 600;
}
.matrix-cell {
background: white;
padding: 12px 10px;
text-align: center;
font-size: 0.9em;
display: flex;
align-items: center;
justify-content: center;
}
.score-high {
background: #dcfce7 !important;
color: #166534;
font-weight: 600;
}
.score-medium {
background: #fef3c7 !important;
color: #92400e;
font-weight: 600;
}
.result-selected {
background: #dbeafe !important;
color: var(--dt-primary-dark);
font-weight: 700;
}
.decision-result {
margin: 25px 0;
}
.result-box {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border: 2px solid var(--dt-primary);
border-radius: 16px;
padding: 25px;
margin: 20px 0;
}
.result-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.result-icon {
font-size: 2em;
}
.result-header h5 {
color: var(--dt-primary-dark);
font-size: 1.3em;
margin: 0;
}
.result-details ul {
list-style: none;
padding: 0;
}
.result-details li {
background: white;
padding: 10px 15px;
margin: 8px 0;
border-radius: 8px;
border-left: 3px solid var(--dt-primary);
font-size: 0.95em;
}
.alternative-option {
background: var(--dt-gray-50);
border-radius: 12px;
padding: 20px;
margin: 20px 0;
border: 1px solid var(--dt-gray-300);
}
.alternative-option h5 {
color: var(--dt-gray-700);
margin-bottom: 15px;
}
.alternative-list {
list-style: none;
padding: 0;
}
.alternative-list li {
padding: 8px 0;
color: var(--dt-gray-600);
border-bottom: 1px solid var(--dt-gray-200);
font-size: 0.9em;
}
.decision-impact {
margin: 30px 0;
}
.impact-comparison {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 25px;
margin: 25px 0;
}
.impact-item {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
}
.impact-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid var(--dt-gray-200);
}
.impact-icon {
font-size: 2em;
}
.impact-header h5 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0;
}
.action-list {
list-style: none;
padding: 0;
}
.action-list li {
background: var(--dt-gray-50);
padding: 12px 15px;
margin: 10px 0;
border-radius: 8px;
border-left: 3px solid var(--dt-primary-light);
font-size: 0.95em;
line-height: 1.5;
}
/* 워크플로우 2단계 추가 스타일 */
.highlight-step {
background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%) !important;
border: 2px solid var(--dt-warning) !important;
font-weight: 600 !important;
color: #92400e !important;
}
.system-banner {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border: 2px solid var(--dt-primary);
border-radius: 16px;
padding: 25px;
margin: 30px 0;
display: flex;
align-items: center;
gap: 20px;
box-shadow: var(--dt-shadow);
}
.banner-icon {
font-size: 3em;
flex-shrink: 0;
}
.banner-content {
flex: 1;
}
.banner-content h3 {
color: var(--dt-primary-dark);
margin: 0 0 10px 0;
font-size: 1.4em;
}
.banner-content p {
color: var(--dt-gray-700);
margin: 0;
font-size: 1.1em;
}
.btn-banner {
background: linear-gradient(135deg, var(--dt-primary) 0%, var(--dt-primary-light) 100%);
color: white;
border: none;
padding: 12px 24px;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--dt-shadow-sm);
}
.btn-banner:hover {
transform: translateY(-2px);
box-shadow: var(--dt-shadow);
}
.inspection-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin: 25px 0;
}
.inspection-step {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
transition: all 0.3s ease;
}
.inspection-step:hover {
transform: translateY(-4px);
box-shadow: var(--dt-shadow-lg);
}
.inspection-step .step-icon {
font-size: 2.5em;
margin-bottom: 15px;
display: block;
}
.inspection-step h5 {
color: var(--dt-primary);
font-size: 1.2em;
margin-bottom: 15px;
}
.step-details {
list-style: none;
padding: 0;
}
.step-details li {
background: var(--dt-gray-50);
padding: 8px 12px;
margin: 6px 0;
border-radius: 6px;
border-left: 3px solid var(--dt-primary-light);
font-size: 0.9em;
}
.storage-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin: 25px 0;
}
.storage-feature {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
}
.feature-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid var(--dt-gray-200);
}
.feature-icon {
font-size: 2em;
}
.feature-header h5 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0;
}
.zone-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.zone-item {
background: var(--dt-gray-50);
padding: 15px;
border-radius: 10px;
border-left: 4px solid var(--dt-primary);
display: flex;
flex-direction: column;
gap: 8px;
}
.zone-capacity {
font-size: 0.9em;
color: var(--dt-gray-600);
}
.qr-benefits {
list-style: none;
padding: 0;
}
.qr-benefits li {
background: var(--dt-gray-50);
padding: 12px 15px;
margin: 10px 0;
border-radius: 8px;
border-left: 3px solid var(--dt-success);
font-size: 0.95em;
}
.tracking-system-overview {
margin: 30px 0;
}
.tracking-banner {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
border-radius: 16px;
padding: 25px;
margin-bottom: 30px;
border: 1px solid var(--dt-gray-200);
text-align: center;
}
.tracking-title h4 {
color: var(--dt-primary);
font-size: 1.4em;
margin-bottom: 10px;
}
.tracking-title p {
color: var(--dt-gray-700);
font-size: 1.1em;
margin: 0;
}
.tracking-stages {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin: 30px 0;
flex-wrap: wrap;
}
.tracking-stage {
background: white;
border-radius: 16px;
padding: 20px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
min-width: 200px;
transition: all 0.3s ease;
}
.tracking-stage:hover {
transform: translateY(-4px);
box-shadow: var(--dt-shadow-lg);
}
.stage-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}
.stage-number {
background: var(--dt-primary);
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
.stage-header h5 {
color: var(--dt-gray-800);
font-size: 1.1em;
margin: 0;
}
.stage-status {
background: var(--dt-success);
color: white;
padding: 6px 12px;
border-radius: 15px;
font-size: 0.85em;
font-weight: 600;
margin-bottom: 12px;
display: inline-block;
}
.stage-details p {
margin: 5px 0;
font-size: 0.9em;
color: var(--dt-gray-600);
}
.tracking-arrow {
font-size: 2em;
color: var(--dt-primary);
font-weight: bold;
}
.benefits-comparison {
margin: 25px 0;
}
.before-after {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.before, .after {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
}
.before h5 {
color: var(--dt-danger);
margin-bottom: 20px;
font-size: 1.2em;
}
.after h5 {
color: var(--dt-success);
margin-bottom: 20px;
font-size: 1.2em;
}
.problem-list, .solution-list {
list-style: none;
padding: 0;
}
.problem-list li {
background: #fef2f2;
border-left: 3px solid var(--dt-danger);
padding: 10px 15px;
margin: 8px 0;
border-radius: 6px;
font-size: 0.95em;
}
.solution-list li {
background: #f0fdf4;
border-left: 3px solid var(--dt-success);
padding: 10px 15px;
margin: 8px 0;
border-radius: 6px;
font-size: 0.95em;
}
.alert-types {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 25px 0;
}
.alert-type {
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: var(--dt-shadow-sm);
border: 1px solid var(--dt-gray-200);
text-align: center;
transition: all 0.3s ease;
}
.alert-type:hover {
transform: translateY(-4px);
box-shadow: var(--dt-shadow);
}
.alert-icon {
font-size: 2.5em;
margin-bottom: 15px;
display: block;
}
.alert-content h5 {
color: var(--dt-gray-800);
font-size: 1.1em;
margin-bottom: 10px;
}
.alert-content p {
color: var(--dt-gray-600);
font-size: 0.95em;
margin: 0;
}
/* 현대적 UI 개선 스타일 */
.modern-section {
background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
border-radius: 20px;
padding: 35px;
margin: 30px 0;
border: 1px solid #e2e8f0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.section-header {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 35px;
padding-bottom: 20px;
border-bottom: 2px solid #e2e8f0;
}
.header-icon {
font-size: 3.5em;
background: linear-gradient(135deg, var(--dt-primary) 0%, var(--dt-primary-light) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.header-content {
flex: 1;
}
.header-content h3 {
color: var(--dt-gray-800);
font-size: 1.8em;
margin: 0 0 8px 0;
font-weight: 700;
}
.header-content p {
color: var(--dt-gray-600);
font-size: 1.1em;
margin: 0;
font-weight: 400;
}
.modern-btn {
padding: 14px 28px;
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 1em;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.modern-btn.primary {
background: linear-gradient(135deg, var(--dt-primary) 0%, #4f46e5 100%);
color: white;
}
.modern-btn.primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}
.process-flow-modern {
display: flex;
align-items: center;
justify-content: center;
gap: 25px;
margin: 30px 0;
flex-wrap: wrap;
}
.process-card {
background: white;
border-radius: 20px;
padding: 25px 20px;
text-align: center;
min-width: 180px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
border: 1px solid #f1f5f9;
transition: all 0.3s ease;
position: relative;
}
.process-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.card-number {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--dt-primary) 0%, #4f46e5 100%);
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.1em;
box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}
.card-icon {
font-size: 2.5em;
margin: 15px 0 10px 0;
display: block;
}
.process-card h5 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0 0 15px 0;
font-weight: 600;
}
.card-highlights {
display: flex;
flex-wrap: wrap;
gap: 6px;
justify-content: center;
}
.highlight {
background: #f1f5f9;
color: var(--dt-gray-700);
padding: 4px 10px;
border-radius: 12px;
font-size: 0.8em;
font-weight: 500;
border: 1px solid #e2e8f0;
}
.highlight.success {
background: #dcfce7;
color: #16a34a;
border-color: #bbf7d0;
}
.highlight.warning {
background: #fef3c7;
color: #d97706;
border-color: #fed7aa;
}
.highlight.danger {
background: #fecaca;
color: #dc2626;
border-color: #fca5a5;
}
.flow-arrow {
font-size: 2em;
color: var(--dt-primary);
font-weight: bold;
opacity: 0.7;
}
.storage-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 25px 0;
}
.storage-zones, .qr-tracking {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
border: 1px solid #f1f5f9;
}
.storage-zones h5, .qr-tracking h5 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0 0 20px 0;
font-weight: 600;
}
.zones-compact {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
}
.zone-badge {
padding: 12px 16px;
border-radius: 12px;
font-size: 0.9em;
font-weight: 600;
text-align: center;
border: 2px solid;
transition: all 0.3s ease;
}
.zone-badge:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.zone-badge.pipe {
background: #eff6ff;
color: #2563eb;
border-color: #bfdbfe;
}
.zone-badge.valve {
background: #f0fdf4;
color: #16a34a;
border-color: #bbf7d0;
}
.zone-badge.fitting {
background: #fef3c7;
color: #d97706;
border-color: #fed7aa;
}
.zone-badge.special {
background: #fdf2f8;
color: #c026d3;
border-color: #f9a8d4;
}
.qr-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 15px;
}
.qr-feature {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 15px 10px;
background: #f8fafc;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}
.qr-feature:hover {
background: #f1f5f9;
transform: translateY(-2px);
}
.qr-icon {
font-size: 1.8em;
}
.qr-feature span:last-child {
font-size: 0.85em;
color: var(--dt-gray-700);
font-weight: 500;
}
.tracking-timeline {
position: relative;
padding: 20px 0;
}
.tracking-timeline::before {
content: '';
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 3px;
background: linear-gradient(to bottom, var(--dt-primary) 0%, #e2e8f0 100%);
border-radius: 2px;
}
.timeline-item {
display: flex;
align-items: flex-start;
gap: 25px;
margin-bottom: 30px;
position: relative;
}
.timeline-marker {
background: white;
border: 3px solid #e2e8f0;
color: var(--dt-gray-500);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.2em;
flex-shrink: 0;
z-index: 2;
transition: all 0.3s ease;
}
.timeline-item.active .timeline-marker {
background: linear-gradient(135deg, var(--dt-primary) 0%, #4f46e5 100%);
border-color: var(--dt-primary);
color: white;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.timeline-content {
background: white;
border-radius: 16px;
padding: 20px 25px;
flex: 1;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
border: 1px solid #f1f5f9;
transition: all 0.3s ease;
}
.timeline-item.active .timeline-content {
border-color: var(--dt-primary-light);
box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}
.timeline-content h5 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0 0 8px 0;
font-weight: 600;
}
.timeline-content p {
color: var(--dt-gray-600);
margin: 0 0 12px 0;
font-size: 0.95em;
}
.status-badge {
display: inline-block;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.8em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.status-badge.completed {
background: #dcfce7;
color: #16a34a;
border: 1px solid #bbf7d0;
}
.status-badge.pending {
background: #fef3c7;
color: #d97706;
border: 1px solid #fed7aa;
}
.benefits-grid-modern {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 25px 0;
}
.benefit-card {
background: white;
border-radius: 16px;
padding: 25px 20px;
text-align: center;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
border: 1px solid #f1f5f9;
transition: all 0.3s ease;
}
.benefit-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
border-color: var(--dt-primary-light);
}
.benefit-icon {
font-size: 2.5em;
margin-bottom: 15px;
display: block;
}
.benefit-card h5 {
color: var(--dt-gray-800);
font-size: 1.1em;
margin: 0 0 10px 0;
font-weight: 600;
}
.benefit-card p {
color: var(--dt-gray-600);
font-size: 0.9em;
margin: 0;
line-height: 1.4;
}
/* V2 개선된 UI 스타일 */
.process-overview-v2 {
margin: 30px 0;
}
.process-overview-v2 h4 {
color: var(--dt-gray-800);
font-size: 1.3em;
margin-bottom: 25px;
font-weight: 600;
text-align: center;
}
.process-steps-horizontal {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin: 25px 0;
}
.step-card {
background: white;
border-radius: 16px;
padding: 25px 20px;
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
border: 2px solid transparent;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.step-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
opacity: 0.8;
}
.step-card.step-1::before {
background: linear-gradient(90deg, #3b82f6, #06b6d4);
}
.step-card.step-2::before {
background: linear-gradient(90deg, #10b981, #34d399);
}
.step-card.step-3::before {
background: linear-gradient(90deg, #f59e0b, #f97316);
}
.step-card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
border-color: var(--dt-primary-light);
}
.step-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #f1f5f9;
}
.step-num {
background: linear-gradient(135deg, var(--dt-primary), #4f46e5);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.2em;
box-shadow: 0 3px 15px rgba(59, 130, 246, 0.3);
}
.step-header h5 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0;
font-weight: 600;
}
.step-features {
display: flex;
flex-direction: column;
gap: 10px;
}
.feature-item {
background: #f8fafc;
padding: 10px 15px;
border-radius: 10px;
font-size: 0.9em;
font-weight: 500;
color: var(--dt-gray-700);
border-left: 3px solid #e2e8f0;
transition: all 0.3s ease;
}
.feature-item:hover {
background: #f1f5f9;
border-left-color: var(--dt-primary);
transform: translateX(5px);
}
.feature-item.pass {
background: #f0fdf4;
border-left-color: #22c55e;
color: #16a34a;
}
.feature-item.conditional {
background: #fffbeb;
border-left-color: #f59e0b;
color: #d97706;
}
.feature-item.fail {
background: #fef2f2;
border-left-color: #ef4444;
color: #dc2626;
}
.storage-system-v2 {
margin: 30px 0;
}
.storage-header h4 {
color: var(--dt-gray-800);
font-size: 1.3em;
margin-bottom: 25px;
font-weight: 600;
text-align: center;
}
.storage-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.zones-section, .qr-section {
background: white;
border-radius: 16px;
padding: 25px;
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
border: 1px solid #f1f5f9;
}
.section-title {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid #f1f5f9;
font-weight: 600;
color: var(--dt-gray-800);
font-size: 1.1em;
}
.title-icon {
font-size: 1.4em;
}
.zones-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
}
.zone-item {
padding: 18px 15px;
border-radius: 12px;
text-align: center;
border: 2px solid;
transition: all 0.3s ease;
cursor: pointer;
}
.zone-item:hover {
transform: translateY(-4px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}
.zone-label {
font-weight: bold;
font-size: 1em;
margin-bottom: 5px;
}
.zone-type {
font-size: 0.85em;
opacity: 0.8;
}
.zone-a {
background: linear-gradient(135deg, #dbeafe, #bfdbfe);
border-color: #3b82f6;
color: #1e40af;
}
.zone-b {
background: linear-gradient(135deg, #dcfce7, #bbf7d0);
border-color: #22c55e;
color: #15803d;
}
.zone-c {
background: linear-gradient(135deg, #fef3c7, #fed7aa);
border-color: #f59e0b;
color: #d97706;
}
.zone-d {
background: linear-gradient(135deg, #fce7f3, #f9a8d4);
border-color: #ec4899;
color: #be185d;
}
.qr-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 15px;
}
.qr-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 20px 15px;
background: #f8fafc;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}
.qr-item:hover {
background: #f1f5f9;
transform: translateY(-4px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
border-color: var(--dt-primary-light);
}
.qr-icon {
font-size: 2em;
margin-bottom: 5px;
}
.qr-text {
font-size: 0.9em;
color: var(--dt-gray-700);
font-weight: 500;
}
.tracking-flow-v2 {
margin: 30px 0;
}
.flow-steps {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
flex-wrap: wrap;
padding: 20px 0;
}
.flow-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
min-width: 200px;
padding: 20px 15px;
position: relative;
}
.step-circle {
width: 60px;
height: 60px;
border-radius: 50%;
background: white;
border: 3px solid #e2e8f0;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
transition: all 0.3s ease;
position: relative;
z-index: 2;
}
.flow-step.completed .step-circle {
background: linear-gradient(135deg, var(--dt-primary), #4f46e5);
border-color: var(--dt-primary);
box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.step-number {
font-weight: bold;
font-size: 1.2em;
color: var(--dt-gray-500);
}
.flow-step.completed .step-number {
color: white;
}
.step-info h5 {
color: var(--dt-gray-800);
font-size: 1.1em;
margin: 0 0 8px 0;
font-weight: 600;
}
.step-info p {
color: var(--dt-gray-600);
font-size: 0.9em;
margin: 0 0 10px 0;
line-height: 1.4;
}
.status-tag {
display: inline-block;
padding: 4px 12px;
border-radius: 15px;
font-size: 0.75em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.status-tag.done {
background: #dcfce7;
color: #16a34a;
border: 1px solid #bbf7d0;
}
.status-tag.waiting {
background: #fef3c7;
color: #d97706;
border: 1px solid #fed7aa;
}
.flow-connector {
width: 60px;
height: 3px;
background: #e2e8f0;
position: relative;
margin: 0 -15px;
z-index: 1;
}
.flow-connector.completed {
background: linear-gradient(90deg, var(--dt-primary), #4f46e5);
}
/* 간단한 프로세스 비교 */
.process-comparison {
margin: 30px 0;
background: white;
border-radius: 16px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.comparison-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}
.process-column h3 {
font-size: 1.5em;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
text-align: center;
padding-bottom: 15px;
border-bottom: 2px solid #f1f5f9;
}
.process-steps {
display: flex;
flex-direction: column;
gap: 12px;
}
.step {
background: #f8fafc;
padding: 15px 20px;
border-radius: 12px;
font-size: 1.1em;
font-weight: 500;
color: var(--dt-gray-700);
border-left: 4px solid #e2e8f0;
transition: all 0.3s ease;
}
.step:hover {
background: #f1f5f9;
border-left-color: var(--dt-primary);
transform: translateX(5px);
}
.step.highlight {
background: linear-gradient(135deg, #fef3c7, #fed7aa);
border-left-color: #f59e0b;
color: #d97706;
font-weight: 600;
}
/* 발표용 프레젠테이션 스타일 */
.presentation-section {
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
border-radius: 24px;
padding: 50px 40px;
margin: 40px 0;
border: 1px solid #e2e8f0;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.presentation-header {
text-align: center;
margin-bottom: 50px;
padding-bottom: 30px;
border-bottom: 3px solid #e2e8f0;
}
.big-icon {
font-size: 5em;
margin-bottom: 20px;
display: block;
background: linear-gradient(135deg, var(--dt-primary) 0%, #8b5cf6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.presentation-header h2 {
color: var(--dt-gray-800);
font-size: 2.5em;
font-weight: 700;
margin: 0 0 15px 0;
line-height: 1.2;
}
.subtitle {
color: var(--dt-gray-600);
font-size: 1.3em;
font-weight: 400;
margin: 0;
line-height: 1.4;
}
/* 플로우차트 스타일 */
.flowchart-container {
margin: 50px 0;
}
.flowchart-container h3 {
color: var(--dt-gray-800);
font-size: 1.8em;
font-weight: 600;
text-align: center;
margin-bottom: 40px;
}
.flowchart {
display: flex;
align-items: stretch;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
padding: 30px 0;
}
.flow-box {
background: white;
border-radius: 20px;
padding: 30px 25px;
min-width: 280px;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
border: 3px solid transparent;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.flow-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
}
.flow-box.step1::before {
background: linear-gradient(90deg, #3b82f6, #06b6d4);
}
.flow-box.step2::before {
background: linear-gradient(90deg, #10b981, #34d399);
}
.flow-box.step3::before {
background: linear-gradient(90deg, #f59e0b, #f97316);
}
.flow-box:hover {
transform: translateY(-10px);
box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}
.box-number {
background: linear-gradient(135deg, var(--dt-primary), #4f46e5);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.4em;
margin: 0 auto 20px auto;
box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}
.box-title {
color: var(--dt-gray-800);
font-size: 1.4em;
font-weight: 600;
text-align: center;
margin-bottom: 25px;
}
.box-content {
display: flex;
flex-direction: column;
gap: 12px;
}
.key-point {
background: #f8fafc;
padding: 12px 18px;
border-radius: 12px;
font-size: 1em;
font-weight: 500;
color: var(--dt-gray-700);
border-left: 4px solid #e2e8f0;
transition: all 0.3s ease;
}
.key-point:hover {
background: #f1f5f9;
border-left-color: var(--dt-primary);
transform: translateX(8px);
}
.key-point.pass {
background: #f0fdf4;
border-left-color: #22c55e;
color: #15803d;
}
.key-point.warning {
background: #fffbeb;
border-left-color: #f59e0b;
color: #d97706;
}
.key-point.danger {
background: #fef2f2;
border-left-color: #ef4444;
color: #dc2626;
}
.flow-arrow-big {
font-size: 3em;
color: var(--dt-primary);
font-weight: bold;
display: flex;
align-items: center;
opacity: 0.8;
}
/* 인포그래픽 스타일 */
.storage-infographic {
margin: 50px 0;
}
.storage-infographic h3 {
color: var(--dt-gray-800);
font-size: 1.8em;
font-weight: 600;
text-align: center;
margin-bottom: 40px;
}
.infographic-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 40px;
align-items: start;
}
.warehouse-visual {
background: white;
border-radius: 20px;
padding: 30px;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}
.warehouse-title {
color: var(--dt-gray-800);
font-size: 1.3em;
font-weight: 600;
text-align: center;
margin-bottom: 25px;
}
.warehouse-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.warehouse-zone {
display: flex;
align-items: center;
gap: 15px;
padding: 20px;
border-radius: 16px;
border: 2px solid;
transition: all 0.3s ease;
}
.warehouse-zone:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.zone-icon {
font-size: 2.5em;
}
.zone-name {
font-weight: bold;
font-size: 1.1em;
margin-bottom: 3px;
}
.zone-desc {
font-size: 0.9em;
opacity: 0.8;
margin-bottom: 3px;
}
.zone-capacity {
font-size: 0.8em;
opacity: 0.7;
}
.warehouse-zone.zone-a {
background: linear-gradient(135deg, #dbeafe, #bfdbfe);
border-color: #3b82f6;
color: #1e40af;
}
.warehouse-zone.zone-b {
background: linear-gradient(135deg, #dcfce7, #bbf7d0);
border-color: #22c55e;
color: #15803d;
}
.warehouse-zone.zone-c {
background: linear-gradient(135deg, #fef3c7, #fed7aa);
border-color: #f59e0b;
color: #d97706;
}
.warehouse-zone.zone-d {
background: linear-gradient(135deg, #fce7f3, #f9a8d4);
border-color: #ec4899;
color: #be185d;
}
.qr-benefits {
background: white;
border-radius: 20px;
padding: 30px;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}
.qr-title {
color: var(--dt-gray-800);
font-size: 1.3em;
font-weight: 600;
text-align: center;
margin-bottom: 25px;
}
.benefits-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.benefit-big {
display: flex;
align-items: center;
gap: 20px;
padding: 20px;
background: #f8fafc;
border-radius: 16px;
border-left: 5px solid var(--dt-primary);
transition: all 0.3s ease;
}
.benefit-big:hover {
background: #f1f5f9;
transform: translateX(10px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.benefit-big .benefit-icon {
font-size: 2.5em;
flex-shrink: 0;
}
.benefit-title {
font-weight: 600;
font-size: 1.1em;
color: var(--dt-gray-800);
margin-bottom: 5px;
}
.benefit-desc {
font-size: 0.9em;
color: var(--dt-gray-600);
line-height: 1.4;
}
/* 대시보드 스타일 */
.tracking-dashboard {
margin: 50px 0;
background: white;
border-radius: 20px;
padding: 40px;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}
.dashboard-title {
color: var(--dt-gray-800);
font-size: 1.6em;
font-weight: 600;
text-align: center;
margin-bottom: 35px;
}
.tracking-pipeline {
display: flex;
align-items: center;
justify-content: center;
gap: 0;
flex-wrap: wrap;
}
.pipeline-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
min-width: 220px;
padding: 25px 20px;
position: relative;
}
.step-badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
margin-bottom: 20px;
}
.badge-number {
background: white;
border: 4px solid #e2e8f0;
color: var(--dt-gray-500);
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1.5em;
transition: all 0.3s ease;
}
.pipeline-step.completed .badge-number {
background: linear-gradient(135deg, var(--dt-primary), #4f46e5);
border-color: var(--dt-primary);
color: white;
box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}
.pipeline-step.active .badge-number {
background: linear-gradient(135deg, #f59e0b, #f97316);
border-color: #f59e0b;
color: white;
box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.badge-status {
padding: 4px 12px;
border-radius: 12px;
font-size: 0.8em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.pipeline-step.completed .badge-status {
background: #dcfce7;
color: #16a34a;
}
.pipeline-step.active .badge-status {
background: #fef3c7;
color: #d97706;
}
.step-details h4 {
color: var(--dt-gray-800);
font-size: 1.2em;
margin: 0 0 10px 0;
font-weight: 600;
}
.step-meta {
color: var(--dt-gray-600);
font-size: 0.9em;
margin-bottom: 8px;
}
.step-highlight {
font-size: 0.85em;
font-weight: 600;
padding: 6px 12px;
border-radius: 10px;
background: #f0fdf4;
color: #16a34a;
}
.step-highlight.active {
background: #fef3c7;
color: #d97706;
}
.pipeline-connector {
width: 80px;
height: 4px;
background: #e2e8f0;
margin: 0 -20px;
z-index: 1;
}
.pipeline-connector.completed {
background: linear-gradient(90deg, var(--dt-primary), #4f46e5);
}
.pipeline-connector.active {
background: linear-gradient(90deg, #f59e0b, #f97316);
}
/* 임팩트 쇼케이스 */
.impact-showcase {
margin: 50px 0;
}
.impact-title {
color: var(--dt-gray-800);
font-size: 1.8em;
font-weight: 600;
text-align: center;
margin-bottom: 40px;
}
.impact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}
.impact-card {
background: white;
border-radius: 20px;
padding: 35px 25px;
text-align: center;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
border: 3px solid transparent;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.impact-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
}
.impact-card.primary::before {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.impact-card.success::before {
background: linear-gradient(90deg, #10b981, #34d399);
}
.impact-card.warning::before {
background: linear-gradient(90deg, #f59e0b, #f97316);
}
.impact-card.info::before {
background: linear-gradient(90deg, #06b6d4, #3b82f6);
}
.impact-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}
.impact-number {
font-size: 3em;
font-weight: 700;
color: var(--dt-primary);
margin-bottom: 15px;
background: linear-gradient(135deg, var(--dt-primary), #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.impact-label {
color: var(--dt-gray-800);
font-size: 1.2em;
font-weight: 600;
margin-bottom: 12px;
}
.impact-desc {
color: var(--dt-gray-600);
font-size: 0.95em;
line-height: 1.5;
}
@media (max-width: 768px) {
.comparison-row {
grid-template-columns: 1fr;
gap: 30px;
}
.process-column h3 {
font-size: 1.3em;
}
.step {
font-size: 1em;
padding: 12px 18px;
}
.flow-steps {
flex-direction: column;
gap: 20px;
}
.flow-connector {
width: 3px;
height: 40px;
margin: -10px 0;
}
.process-steps-horizontal {
grid-template-columns: 1fr;
}
.storage-content {
grid-template-columns: 1fr;
}
.flowchart {
flex-direction: column;
align-items: center;
}
.flow-arrow-big {
transform: rotate(90deg);
margin: 10px 0;
}
.infographic-content {
grid-template-columns: 1fr;
}
.warehouse-grid {
grid-template-columns: 1fr;
}
.tracking-pipeline {
flex-direction: column;
gap: 20px;
}
.pipeline-connector {
width: 4px;
height: 40px;
margin: -10px 0;
}
.presentation-section {
padding: 30px 20px;
}
.presentation-header h2 {
font-size: 2em;
}
.big-icon {
font-size: 4em;
}
}
/* 사이드바 */
.sidebar {
width: 280px;
background-color: var(--dt-gray-100);
border-right: 1px solid var(--dt-gray-200);
display: flex;
flex-direction: column;
overflow-y: auto;
}
.sidebar-header {
padding: 20px;
border-bottom: 1px solid var(--dt-gray-200);
background-color: white;
}
.sidebar-header h1 {
font-size: 24px;
font-weight: 600;
color: var(--dt-primary);
margin-bottom: 4px;
}
.sidebar-header .version {
font-size: 12px;
color: var(--dt-gray-500);
font-weight: 500;
}
.sidebar-nav {
flex: 1;
padding: 16px 0;
}
.nav-section {
margin-bottom: 24px;
}
.nav-section h3 {
font-size: 12px;
font-weight: 600;
color: var(--dt-gray-600);
text-transform: uppercase;
letter-spacing: 0.5px;
margin: 0 20px 8px 20px;
}
.nav-section ul {
list-style: none;
}
.nav-item {
display: flex;
align-items: center;
padding: 8px 20px;
color: var(--dt-gray-700);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
}
.nav-item:hover {
background-color: var(--dt-gray-200);
color: var(--dt-gray-800);
}
.nav-item.active {
background-color: var(--dt-primary);
color: white;
}
.nav-icon {
margin-right: 12px;
font-size: 16px;
}
.sidebar-footer {
padding: 16px 20px;
border-top: 1px solid var(--dt-gray-200);
background-color: white;
}
.user-info {
display: flex;
align-items: center;
}
.user-avatar {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: var(--dt-primary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 14px;
margin-right: 12px;
}
.user-name {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
}
.user-role {
font-size: 12px;
color: var(--dt-gray-500);
}
/* 메인 컨텐츠 */
.main-content {
flex: 1;
overflow-y: auto;
background-color: var(--dt-gray-50);
}
.page {
display: none;
padding: 24px;
max-width: 1400px;
margin: 0 auto;
}
.page.active {
display: block;
}
.page-header {
margin-bottom: 32px;
padding-bottom: 16px;
border-bottom: 1px solid var(--dt-gray-200);
}
.page-header h2 {
font-size: 28px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 8px;
}
.page-description {
font-size: 16px;
color: var(--dt-gray-600);
}
/* 카드 */
.card {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
margin-bottom: 24px;
}
.card-header {
padding: 20px 24px 16px 24px;
border-bottom: 1px solid var(--dt-gray-200);
display: flex;
align-items: center;
justify-content: space-between;
}
.card-header h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
}
.card-content {
padding: 24px;
}
/* 상태 배지 */
.status-badge {
padding: 4px 12px;
border-radius: 16px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.status-active {
background-color: var(--dt-primary);
color: white;
}
.status-optional {
background-color: var(--dt-gray-300);
color: var(--dt-gray-700);
}
.status-completed {
background-color: var(--dt-success);
color: white;
}
.status-pending {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
.status-inspecting {
background-color: var(--dt-primary-light);
color: white;
}
.status-available {
background-color: var(--dt-success);
color: white;
}
.status-ordered {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
.status-not-requested {
background-color: var(--dt-gray-400);
color: white;
}
.status-ready {
background-color: var(--dt-primary-light);
color: white;
}
.status-partial {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
/* 폼 요소 */
.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group label {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-700);
margin-bottom: 6px;
}
.form-input, .form-select {
padding: 10px 12px;
border: 1px solid var(--dt-gray-300);
border-radius: 6px;
font-size: 14px;
background-color: white;
transition: border-color 0.2s ease;
}
.form-input:focus, .form-select:focus {
outline: none;
border-color: var(--dt-primary);
box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}
/* 버튼 */
.btn {
padding: 10px 20px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
}
.btn-primary {
background-color: var(--dt-primary);
color: white;
}
.btn-primary:hover {
background-color: var(--dt-primary-dark);
}
.btn-secondary {
background-color: var(--dt-gray-200);
color: var(--dt-gray-700);
}
.btn-secondary:hover {
background-color: var(--dt-gray-300);
}
.btn-success {
background-color: var(--dt-success);
color: white;
}
.btn-warning {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
.btn-danger {
background-color: var(--dt-danger);
color: white;
}
.btn-sm {
padding: 6px 12px;
font-size: 12px;
}
/* 그리드 레이아웃 */
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
@media (max-width: 1200px) {
.content-grid {
grid-template-columns: 1fr;
}
}
/* 프로젝트 등록 컨테이너 */
.project-registration-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
max-width: 1200px;
}
@media (max-width: 1000px) {
.project-registration-container {
grid-template-columns: 1fr;
}
}
/* 프로젝트 폼 */
.project-form {
display: flex;
flex-direction: column;
gap: 24px;
}
.customer-section, .delivery-section {
padding: 20px;
background-color: var(--dt-gray-50);
border-radius: 8px;
border: 1px solid var(--dt-gray-200);
}
.customer-section h4, .delivery-section h4 {
font-size: 16px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 16px;
}
.customer-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
@media (max-width: 600px) {
.customer-grid {
grid-template-columns: 1fr;
}
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
@media (max-width: 600px) {
.form-row {
grid-template-columns: 1fr;
}
}
/* 자동 생성 미리보기 */
.generated-preview {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.generated-preview .label {
font-size: 14px;
color: var(--dt-gray-600);
font-weight: 500;
}
.generated-preview .value {
font-size: 16px;
font-weight: 700;
color: var(--dt-gray-500);
font-family: 'Monaco', 'Menlo', monospace;
}
.generation-rule {
font-size: 12px;
color: var(--dt-gray-500);
font-style: italic;
}
/* 폼 액션 */
.form-actions {
display: flex;
gap: 12px;
justify-content: flex-end;
padding-top: 20px;
border-top: 1px solid var(--dt-gray-200);
}
@media (max-width: 600px) {
.form-actions {
flex-direction: column;
}
}
/* 요청 리스트 */
.request-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.request-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px;
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
background-color: var(--dt-gray-50);
transition: all 0.2s ease;
}
.request-item:hover {
background-color: white;
box-shadow: var(--dt-shadow);
}
.request-item.status-approved {
border-left: 4px solid var(--dt-success);
}
.request-item.status-pending {
border-left: 4px solid var(--dt-warning);
}
.request-item.status-review {
border-left: 4px solid var(--dt-danger);
}
.request-title {
font-size: 16px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 6px;
}
.request-details {
display: flex;
gap: 12px;
flex-wrap: wrap;
font-size: 12px;
color: var(--dt-gray-600);
}
.request-details span {
padding: 2px 8px;
background-color: white;
border-radius: 12px;
border: 1px solid var(--dt-gray-200);
}
.request-status {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 6px;
}
.job-no {
font-size: 12px;
font-weight: 700;
color: var(--dt-primary);
font-family: 'Monaco', 'Menlo', monospace;
}
/* 상태별 스타일 */
.status-warning {
background-color: var(--dt-danger);
color: white;
}
.status-planning {
background-color: var(--dt-gray-400);
color: white;
}
.status-production {
background-color: var(--dt-primary);
color: white;
}
.status-in-progress {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
@media (max-width: 600px) {
.request-item {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.request-status {
align-items: flex-start;
flex-direction: row;
justify-content: space-between;
width: 100%;
}
}
/* 간단한 프로젝트 선택기 */
.simple-project-selector {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 70vh;
text-align: center;
padding: 40px 20px;
}
.simple-project-selector h1 {
font-size: 48px;
font-weight: 300;
color: var(--dt-gray-800);
margin-bottom: 16px;
}
.simple-project-selector p {
font-size: 18px;
color: var(--dt-gray-600);
margin-bottom: 40px;
}
.project-select-box {
margin-bottom: 32px;
}
.project-select-box select {
padding: 16px 24px;
font-size: 16px;
border: 2px solid var(--dt-gray-200);
border-radius: 8px;
background-color: white;
color: var(--dt-gray-700);
min-width: 400px;
cursor: pointer;
}
.project-select-box select:focus {
outline: none;
border-color: var(--dt-primary);
}
.project-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}
.project-actions .btn {
padding: 12px 24px;
font-size: 16px;
}
@media (max-width: 768px) {
.simple-project-selector h1 {
font-size: 36px;
}
.project-select-box select {
min-width: 300px;
font-size: 14px;
}
.project-actions {
flex-direction: column;
align-items: center;
}
.project-actions .btn {
width: 100%;
max-width: 300px;
}
}
/* 자동 생성 정보 */
.auto-generated {
margin: 20px 0;
padding: 16px;
background-color: var(--dt-gray-50);
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.generated-item {
display: flex;
justify-content: space-between;
align-items: center;
}
.generated-item .label {
font-size: 14px;
color: var(--dt-gray-600);
font-weight: 500;
}
.generated-item .value {
font-size: 16px;
font-weight: 700;
color: var(--dt-primary);
font-family: 'Monaco', 'Menlo', monospace;
}
/* 정보 섹션 */
.info-section {
margin-bottom: 24px;
}
.info-section h4, .info-section h5 {
font-size: 16px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 12px;
}
.info-section h5 {
font-size: 14px;
margin-top: 16px;
margin-bottom: 8px;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 12px;
margin-bottom: 16px;
}
.info-item {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid var(--dt-gray-200);
}
.info-label {
font-size: 14px;
color: var(--dt-gray-600);
font-weight: 500;
}
.info-value {
font-size: 14px;
color: var(--dt-gray-800);
font-weight: 600;
}
.decisions ul {
list-style: none;
margin-left: 0;
}
.decisions li {
padding: 4px 0;
color: var(--dt-gray-700);
font-size: 14px;
}
.decisions li:before {
content: "•";
color: var(--dt-primary);
font-weight: bold;
margin-right: 8px;
}
/* 사양 그리드 */
.spec-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 16px;
}
.spec-item {
padding: 12px;
background-color: var(--dt-gray-50);
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.spec-label {
display: block;
font-size: 12px;
color: var(--dt-gray-600);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
.spec-value {
font-size: 14px;
color: var(--dt-gray-800);
font-weight: 600;
}
/* 공정표 */
.process-chart {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
margin-bottom: 24px;
padding: 24px;
}
.process-chart h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
.gantt-container {
display: flex;
flex-direction: column;
gap: 12px;
}
.process-item {
display: grid;
grid-template-columns: 200px 1fr 120px;
align-items: center;
gap: 16px;
padding: 12px;
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.process-item.completed {
background-color: rgba(52, 168, 83, 0.05);
border-color: var(--dt-success);
}
.process-item.in-progress {
background-color: rgba(74, 144, 226, 0.05);
border-color: var(--dt-primary);
}
.process-item.pending {
background-color: var(--dt-gray-50);
border-color: var(--dt-gray-300);
}
.process-name {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
}
.process-responsible {
font-size: 12px;
color: var(--dt-gray-600);
}
.process-bar {
position: relative;
height: 24px;
background-color: var(--dt-gray-200);
border-radius: 12px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background-color: var(--dt-primary);
border-radius: 12px;
transition: width 0.3s ease;
}
.process-item.completed .progress-fill {
background-color: var(--dt-success);
}
.progress-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
font-weight: 600;
color: white;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.process-date {
font-size: 12px;
color: var(--dt-gray-600);
font-weight: 500;
text-align: right;
}
/* 회의 레이아웃 */
.meeting-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-bottom: 24px;
}
@media (max-width: 1000px) {
.meeting-layout {
grid-template-columns: 1fr;
}
}
.schedule-section, .delivery-section {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
padding: 24px;
}
.schedule-section h3, .delivery-section h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
.schedule-list, .delivery-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.schedule-item {
display: flex;
gap: 16px;
padding: 16px;
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.schedule-item.urgent {
background-color: rgba(234, 67, 53, 0.05);
border-color: var(--dt-danger);
}
.schedule-item.normal {
background-color: var(--dt-gray-50);
}
.schedule-date {
font-size: 14px;
font-weight: 700;
color: var(--dt-primary);
min-width: 40px;
}
.schedule-title {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 4px;
}
.schedule-type {
font-size: 12px;
color: var(--dt-gray-600);
margin-bottom: 8px;
}
.schedule-memo {
font-size: 12px;
color: var(--dt-gray-700);
line-height: 1.4;
}
.delivery-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px;
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.delivery-item.completed {
background-color: rgba(52, 168, 83, 0.05);
border-color: var(--dt-success);
}
.delivery-item.warning {
background-color: rgba(251, 188, 4, 0.05);
border-color: var(--dt-warning);
}
.delivery-item.delayed {
background-color: rgba(234, 67, 53, 0.05);
border-color: var(--dt-danger);
}
.delivery-status {
font-size: 16px;
}
.delivery-name {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 2px;
}
.delivery-date {
font-size: 12px;
color: var(--dt-gray-600);
}
/* Follow-up 섹션 */
.followup-section {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
padding: 24px;
}
.followup-section h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
.followup-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.followup-item {
display: grid;
grid-template-columns: 80px 1fr 100px;
gap: 16px;
padding: 16px;
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
align-items: start;
}
.followup-item.priority-high {
background-color: rgba(234, 67, 53, 0.05);
border-color: var(--dt-danger);
}
.followup-item.priority-medium {
background-color: rgba(251, 188, 4, 0.05);
border-color: var(--dt-warning);
}
.followup-priority {
font-size: 12px;
font-weight: 600;
text-align: center;
}
.followup-title {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 6px;
}
.followup-description {
font-size: 13px;
color: var(--dt-gray-700);
line-height: 1.4;
margin-bottom: 8px;
}
.followup-meta {
font-size: 11px;
color: var(--dt-gray-600);
}
.followup-responsible {
font-weight: 600;
margin-right: 8px;
}
.followup-status {
font-size: 12px;
font-weight: 600;
color: var(--dt-primary);
text-align: center;
}
/* 구매 대시보드 */
.purchase-dashboard {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
padding: 24px;
margin-bottom: 24px;
}
.purchase-dashboard h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
.purchase-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.purchase-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
border-radius: 8px;
border: 1px solid var(--dt-gray-200);
}
.purchase-item.status-pending {
background-color: rgba(251, 188, 4, 0.05);
border-color: var(--dt-warning);
}
.purchase-item.status-inspecting {
background-color: rgba(74, 144, 226, 0.05);
border-color: var(--dt-primary);
}
.purchase-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}
.po-number {
font-size: 14px;
font-weight: 700;
color: var(--dt-primary);
font-family: 'Monaco', 'Menlo', monospace;
}
.purchase-status {
padding: 2px 8px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
}
.item-name {
font-size: 16px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 4px;
}
.item-meta, .item-dates {
font-size: 12px;
color: var(--dt-gray-600);
margin-bottom: 2px;
}
/* 검수 레이아웃 */
.inspection-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-bottom: 24px;
}
@media (max-width: 1000px) {
.inspection-layout {
grid-template-columns: 1fr;
}
}
.inspection-process, .storage-management {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
padding: 24px;
}
.inspection-process h3, .storage-management h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
.process-steps {
display: flex;
flex-direction: column;
gap: 20px;
}
.step {
display: flex;
gap: 16px;
padding: 16px;
border-radius: 8px;
border: 1px solid var(--dt-gray-200);
}
.step.completed {
background-color: rgba(52, 168, 83, 0.05);
border-color: var(--dt-success);
}
.step.active {
background-color: rgba(74, 144, 226, 0.05);
border-color: var(--dt-primary);
}
.step.pending {
background-color: var(--dt-gray-50);
}
.step-number {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: var(--dt-gray-300);
color: var(--dt-gray-700);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 14px;
flex-shrink: 0;
}
.step.completed .step-number {
background-color: var(--dt-success);
color: white;
}
.step.active .step-number {
background-color: var(--dt-primary);
color: white;
}
.step-content h4 {
font-size: 16px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 12px;
}
.checklist {
list-style: none;
}
.checklist li {
padding: 4px 0;
font-size: 14px;
}
.checklist li.checked {
color: var(--dt-success);
}
.checklist li.active {
color: var(--dt-primary);
font-weight: 600;
}
.result-options {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
/* 창고 구역 */
.warehouse-zones {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 24px;
}
.zone-item {
padding: 16px;
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
background-color: var(--dt-gray-50);
}
.zone-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
}
.zone-name {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
}
.zone-capacity {
font-size: 12px;
color: var(--dt-gray-600);
font-family: 'Monaco', 'Menlo', monospace;
}
.zone-shelves {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.shelf {
padding: 6px 12px;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.shelf.available {
background-color: var(--dt-success);
color: white;
}
.shelf.occupied {
background-color: var(--dt-gray-400);
color: white;
}
.shelf.available:hover {
background-color: var(--dt-primary);
}
/* 보관 액션 */
.storage-actions {
padding: 16px;
background-color: var(--dt-gray-50);
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.selected-location {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
}
.selected-location .label {
font-size: 14px;
color: var(--dt-gray-600);
font-weight: 500;
}
.selected-location .location {
font-size: 14px;
font-weight: 700;
color: var(--dt-primary);
font-family: 'Monaco', 'Menlo', monospace;
}
.storage-actions .btn {
margin-right: 8px;
margin-bottom: 8px;
}
/* 인수인계 현황 */
.handover-status {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
padding: 24px;
}
.handover-status h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
.handover-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.handover-item {
display: grid;
grid-template-columns: 200px 1fr 120px;
align-items: center;
gap: 16px;
padding: 16px;
border: 1px solid var(--dt-gray-200);
border-radius: 6px;
background-color: var(--dt-gray-50);
}
.item-name {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
}
.item-location {
font-size: 12px;
color: var(--dt-gray-600);
font-family: 'Monaco', 'Menlo', monospace;
}
.quantity-info {
display: flex;
gap: 12px;
font-size: 12px;
}
.quantity-info span {
padding: 2px 6px;
border-radius: 4px;
font-weight: 600;
}
.total {
background-color: var(--dt-gray-200);
color: var(--dt-gray-700);
}
.handed {
background-color: var(--dt-success);
color: white;
}
.remaining {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
.handover-status-badge {
text-align: center;
font-size: 12px;
font-weight: 600;
}
/* 작업 레이아웃 */
.work-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
@media (max-width: 1200px) {
.work-layout {
grid-template-columns: 1fr;
}
}
.daily-work, .material-check {
background-color: white;
border-radius: 8px;
box-shadow: var(--dt-shadow);
border: 1px solid var(--dt-gray-200);
padding: 24px;
}
.daily-work h3, .material-check h3 {
font-size: 18px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 20px;
}
/* 작업 폼 */
.work-form {
display: flex;
flex-direction: column;
gap: 24px;
}
.form-section h4 {
font-size: 16px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 16px;
}
.progress-input {
display: flex;
align-items: center;
gap: 12px;
}
.progress-slider {
flex: 1;
height: 6px;
border-radius: 3px;
background-color: var(--dt-gray-200);
outline: none;
-webkit-appearance: none;
}
.progress-slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: var(--dt-primary);
cursor: pointer;
}
.progress-value {
font-size: 14px;
font-weight: 600;
color: var(--dt-primary);
min-width: 40px;
text-align: right;
}
/* 이슈 리스트 */
.issue-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 16px;
}
.issue-item {
padding: 16px;
border: 1px solid var(--dt-gray-200);
border-radius: 6px;
background-color: var(--dt-gray-50);
}
.issue-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}
.issue-time {
font-size: 12px;
font-weight: 600;
color: var(--dt-gray-600);
font-family: 'Monaco', 'Menlo', monospace;
}
.issue-type {
padding: 2px 8px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
}
.type-material {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
.type-quality {
background-color: var(--dt-danger);
color: white;
}
.issue-urgency {
padding: 2px 8px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
}
.urgency-high {
background-color: var(--dt-danger);
color: white;
}
.urgency-medium {
background-color: var(--dt-warning);
color: var(--dt-gray-800);
}
.issue-description {
font-size: 14px;
color: var(--dt-gray-800);
margin-bottom: 4px;
}
.issue-solution {
font-size: 12px;
color: var(--dt-gray-600);
font-style: italic;
}
/* 자재 검색 */
.material-search {
margin-bottom: 20px;
}
.search-input {
display: flex;
gap: 12px;
}
.search-input .form-input {
flex: 1;
}
/* 자재 리스트 */
.material-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
.material-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px;
border: 1px solid var(--dt-gray-200);
border-radius: 6px;
}
.material-item.status-available {
background-color: rgba(52, 168, 83, 0.05);
border-color: var(--dt-success);
}
.material-item.status-ordered {
background-color: rgba(251, 188, 4, 0.05);
border-color: var(--dt-warning);
}
.material-item.status-not-requested {
background-color: var(--dt-gray-50);
border-color: var(--dt-gray-300);
}
.material-item.status-ready {
background-color: rgba(74, 144, 226, 0.05);
border-color: var(--dt-primary);
}
.material-name {
font-size: 14px;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 4px;
}
.material-details {
font-size: 12px;
color: var(--dt-gray-600);
}
.material-status {
display: flex;
align-items: center;
gap: 8px;
}
.material-qty, .material-date, .material-note {
font-size: 12px;
color: var(--dt-gray-600);
font-weight: 600;
}
/* 자재 액션 */
.material-actions {
padding: 16px;
background-color: var(--dt-gray-50);
border-radius: 6px;
border: 1px solid var(--dt-gray-200);
}
.action-note {
margin-bottom: 12px;
}
.action-note p {
font-size: 13px;
color: var(--dt-gray-700);
margin-bottom: 4px;
}
.action-note strong {
color: var(--dt-danger);
}
/* 반응형 디자인 */
@media (max-width: 768px) {
body {
flex-direction: column;
}
.sidebar {
width: 100%;
height: auto;
order: 2;
}
.main-content {
order: 1;
}
.page {
padding: 16px;
}
.content-grid,
.meeting-layout,
.inspection-layout,
.work-layout {
grid-template-columns: 1fr;
}
.process-item {
grid-template-columns: 1fr;
gap: 8px;
}
.followup-item {
grid-template-columns: 1fr;
gap: 12px;
}
.handover-item {
grid-template-columns: 1fr;
gap: 8px;
}
}
/* 워크플로우 개요 페이지 스타일 */
.workflow-overview-container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
}
/* 플로우차트 스타일 */
.workflow-flowchart {
position: relative;
margin-bottom: 3rem;
}
.workflow-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
gap: 1rem;
}
.workflow-box {
flex: 1;
max-width: 300px;
background: white;
border: 2px solid var(--dt-gray-200);
border-radius: 12px;
padding: 1.5rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--dt-shadow);
position: relative;
text-align: center;
min-height: 180px;
display: flex;
flex-direction: column;
justify-content: center;
}
.workflow-box:hover {
border-color: var(--dt-primary);
box-shadow: var(--dt-shadow-lg);
transform: translateY(-3px);
}
.workflow-box.special {
border-color: #ed8936;
background: linear-gradient(135deg, #fff5f0, #fef5e7);
}
.workflow-box.special:hover {
border-color: #dd6b20;
box-shadow: 0 8px 25px rgba(237, 137, 54, 0.25);
}
.box-number {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, var(--dt-primary), var(--dt-primary-light));
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
font-weight: 600;
margin: 0 auto 1rem auto;
pointer-events: none;
}
.workflow-box.special .box-number {
background: linear-gradient(135deg, #ed8936, #f6ad55);
font-size: 1rem;
}
.box-icon {
font-size: 2rem;
margin-bottom: 0.5rem;
pointer-events: none;
}
.box-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--dt-gray-800);
margin-bottom: 0.75rem;
pointer-events: none;
}
.box-subtitle {
font-size: 0.85rem;
color: var(--dt-gray-600);
line-height: 1.4;
pointer-events: none;
}
.flow-arrow {
color: var(--dt-primary);
font-size: 2rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
min-width: 40px;
pointer-events: none;
}
.flow-arrow.horizontal {
margin: 0 0.5rem;
}
.flow-connections {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
z-index: 0;
}
.vertical-line {
position: absolute;
width: 2px;
background: var(--dt-primary);
opacity: 0.6;
}
/* 반응형 디자인 */
@media (max-width: 1200px) {
.workflow-row {
flex-direction: column;
gap: 2rem;
}
.workflow-box {
max-width: 100%;
width: 100%;
}
.flow-arrow.horizontal {
transform: rotate(90deg);
margin: 1rem 0;
}
.flow-connections {
display: none;
}
}
@media (max-width: 768px) {
.workflow-overview-container {
padding: 1rem;
}
.workflow-box {
min-height: 150px;
padding: 1rem;
}
.box-title {
font-size: 1rem;
}
.box-subtitle {
font-size: 0.8rem;
}
}
.workflow-summary {
background: var(--dt-gray-50);
border: 1px solid var(--dt-gray-200);
border-radius: 12px;
padding: 2rem;
}
.workflow-summary h3 {
color: var(--dt-gray-800);
margin: 0 0 1rem 0;
font-size: 1.3rem;
font-weight: 600;
}
.workflow-summary ul {
list-style: none;
padding: 0;
margin: 0;
}
.workflow-summary li {
padding: 0.75rem 0;
border-bottom: 1px solid var(--dt-gray-200);
color: var(--dt-gray-700);
line-height: 1.6;
}
.workflow-summary li:last-child {
border-bottom: none;
}
.workflow-summary strong {
color: var(--dt-gray-800);
}
/* 워크플로우 상세 페이지 스타일 */
.workflow-detail-container {
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
}
.detail-section {
background: white;
border: 1px solid var(--dt-gray-200);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: var(--dt-shadow);
}
.detail-section h3 {
color: var(--dt-gray-800);
margin: 0 0 1.5rem 0;
font-size: 1.3rem;
font-weight: 600;
padding-bottom: 0.75rem;
border-bottom: 2px solid var(--dt-gray-100);
}
.feature-list {
list-style: none;
padding: 0;
margin: 0;
}
.feature-list li {
padding: 0.75rem 0;
border-bottom: 1px solid var(--dt-gray-50);
color: var(--dt-gray-700);
line-height: 1.6;
position: relative;
padding-left: 1.5rem;
}
.feature-list li:before {
content: "✓";
position: absolute;
left: 0;
color: var(--dt-primary);
font-weight: 600;
}
.feature-list li:last-child {
border-bottom: none;
}
.workflow-connection {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.connection-item {
background: var(--dt-gray-100);
color: var(--dt-gray-700);
padding: 0.75rem 1rem;
border-radius: 8px;
font-weight: 500;
white-space: nowrap;
}
.arrow {
color: var(--dt-gray-400);
font-size: 1.2rem;
font-weight: 600;
}
.module-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 0.75rem;
}
.module-item {
background: var(--dt-gray-50);
color: var(--dt-gray-700);
padding: 1rem;
border-radius: 8px;
text-align: center;
font-weight: 500;
border: 1px solid var(--dt-gray-200);
}
.consideration-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.consideration-item {
background: var(--dt-gray-50);
padding: 1.5rem;
border-radius: 8px;
border: 1px solid var(--dt-gray-200);
}
.consideration-item h4 {
color: var(--dt-gray-800);
margin: 0 0 0.75rem 0;
font-size: 1.1rem;
font-weight: 600;
}
.consideration-item p {
color: var(--dt-gray-600);
margin: 0;
line-height: 1.5;
}
.process-flow {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
.process-step {
background: var(--dt-gray-100);
color: var(--dt-gray-700);
padding: 1rem 1.5rem;
border-radius: 8px;
font-weight: 500;
text-align: center;
flex: 1;
min-width: 150px;
}
.process-step h4 {
color: var(--dt-gray-800);
margin: 0 0 0.5rem 0;
font-size: 1rem;
font-weight: 600;
}
.process-step p {
margin: 0;
font-size: 0.9rem;
color: var(--dt-gray-600);
}
.process-step ul {
text-align: left;
margin: 0.5rem 0 0 0;
padding-left: 1rem;
}
.process-step li {
color: var(--dt-gray-700);
font-size: 0.9rem;
margin-bottom: 0.25rem;
}
.process-flow-vertical {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.process-flow-vertical .process-step {
width: 100%;
max-width: 300px;
}
.arrow-down {
color: var(--dt-gray-400);
font-size: 1.5rem;
font-weight: 600;
}
.department-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 1.5rem;
}
.department-card {
background: var(--dt-gray-50);
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
padding: 1.5rem;
}
.department-card h4 {
color: var(--dt-gray-800);
margin: 0 0 1rem 0;
font-size: 1.1rem;
font-weight: 600;
}
.department-card ul {
list-style: none;
padding: 0;
margin: 0;
}
.department-card li {
color: var(--dt-gray-700);
padding: 0.5rem 0;
border-bottom: 1px solid var(--dt-gray-200);
position: relative;
padding-left: 1.5rem;
}
.department-card li:before {
content: "•";
position: absolute;
left: 0;
color: var(--dt-primary);
font-weight: 600;
}
.department-card li:last-child {
border-bottom: none;
}
.important-notes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.note-item {
background: #fff5f5;
border: 1px solid #fed7d7;
border-radius: 8px;
padding: 1.5rem;
}
.note-item h4 {
color: #c53030;
margin: 0 0 0.75rem 0;
font-size: 1rem;
font-weight: 600;
}
.note-item p {
color: #742a2a;
margin: 0;
line-height: 1.5;
}
.responsibility-card {
background: var(--dt-gray-50);
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.responsibility-card h4 {
color: var(--dt-gray-800);
margin: 0 0 1rem 0;
font-size: 1.1rem;
font-weight: 600;
}
.ncr-process {
margin-top: 2rem;
}
.ncr-process h4 {
color: var(--dt-gray-800);
margin: 0 0 1rem 0;
font-size: 1.1rem;
font-weight: 600;
}
.department-responsibilities {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.problem-handling h4 {
color: var(--dt-gray-800);
margin: 1.5rem 0 0.75rem 0;
font-size: 1rem;
font-weight: 600;
}
.problem-handling h4:first-child {
margin-top: 0;
}
.problem-handling p {
color: var(--dt-gray-700);
margin: 0 0 1rem 0;
line-height: 1.6;
}
.meeting-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.meeting-features .feature-card {
background: var(--dt-gray-50);
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
padding: 1.5rem;
}
.meeting-features .feature-card h4 {
color: var(--dt-gray-800);
margin: 0 0 0.75rem 0;
font-size: 1.1rem;
font-weight: 600;
}
.meeting-features .feature-card p {
color: var(--dt-gray-600);
margin: 0;
line-height: 1.5;
}
.purpose-list {
list-style: none;
padding: 0;
margin: 0;
}
.purpose-list li {
padding: 0.75rem 0;
border-bottom: 1px solid var(--dt-gray-50);
color: var(--dt-gray-700);
line-height: 1.6;
position: relative;
padding-left: 1.5rem;
}
.purpose-list li:before {
content: "→";
position: absolute;
left: 0;
color: var(--dt-primary);
font-weight: 600;
}
.purpose-list li:last-child {
border-bottom: none;
}
.meeting-components {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
}
.component-item {
background: var(--dt-gray-50);
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
}
.component-item h4 {
color: var(--dt-gray-800);
margin: 0 0 0.75rem 0;
font-size: 1rem;
font-weight: 600;
}
.component-item p {
color: var(--dt-gray-600);
margin: 0;
font-size: 0.9rem;
line-height: 1.5;
}
.checklist-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.checklist-item {
background: #f0fff4;
border: 1px solid #c6f6d5;
border-radius: 8px;
padding: 1.5rem;
}
.checklist-item h4 {
color: #22543d;
margin: 0 0 1rem 0;
font-size: 1rem;
font-weight: 600;
}
.checklist-item ul {
list-style: none;
padding: 0;
margin: 0;
}
.checklist-item li {
color: #276749;
padding: 0.5rem 0;
position: relative;
padding-left: 1.5rem;
}
.checklist-item li:before {
content: "✓";
position: absolute;
left: 0;
color: #38a169;
font-weight: 600;
}
.approval-flow {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.approval-step {
background: var(--dt-gray-100);
border: 1px solid var(--dt-gray-300);
border-radius: 8px;
padding: 1.5rem;
width: 100%;
max-width: 400px;
text-align: center;
}
.approval-step h4 {
color: var(--dt-gray-800);
margin: 0 0 0.75rem 0;
font-size: 1rem;
font-weight: 600;
}
.approval-step p {
color: var(--dt-gray-700);
margin: 0;
line-height: 1.5;
}
.report-components {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
}
.report-item {
background: var(--dt-gray-50);
border: 1px solid var(--dt-gray-200);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
}
.report-item h4 {
color: var(--dt-gray-800);
margin: 0 0 0.75rem 0;
font-size: 1rem;
font-weight: 600;
}
.report-item p {
color: var(--dt-gray-600);
margin: 0;
font-size: 0.9rem;
line-height: 1.5;
}
.btn-back {
background: var(--dt-gray-100);
color: var(--dt-gray-700);
border: 1px solid var(--dt-gray-300);
padding: 0.5rem 1rem;
border-radius: 6px;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.2s ease;
margin-bottom: 1rem;
text-decoration: none;
display: inline-block;
}
.btn-back:hover {
background: var(--dt-gray-200);
color: var(--dt-gray-800);
}