New Page
<!DOCTYPE
html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prep Process at a Glance</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f5f7fa;
padding: 40px 20px;
margin: 0;
}
.container {
max-width: 900px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
h2 {
color: #2c3e50;
text-align: center;
margin-bottom: 40px;
font-size: 32px;
}
.flowchart {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.box {
padding: 20px 30px;
border-radius: 10px;
color: white;
font-weight: 600;
text-align: center;
min-width: 250px;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
transition: transform 0.2s;
}
.box:hover {
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.box-title {
font-size: 18px;
margin-bottom: 5px;
}
.box-subtitle {
font-size: 14px;
opacity: 0.9;
}
.blue {
background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
border: 3px solid #2E5C8A;
}
.purple {
background: linear-gradient(135deg, #7B68EE 0%, #6A5ACD 100%);
border: 3px solid #5A4BAA;
}
.green {
background: linear-gradient(135deg, #50C878 0%, #3CB371 100%);
border: 3px solid #3AA05E;
}
.red {
background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
border: 3px solid #CC5555;
}
.orange {
background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
border: 3px solid #CC8400;
}
.violet {
background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
border: 3px solid #7D4A93;
}
.arrow {
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 25px solid #34495e;
position: relative;
}
.arrow::before {
content: '';
position: absolute;
width: 4px;
height: 30px;
background: #34495e;
left: -2px;
top: -55px;
}
.arrow-label {
position: absolute;
top: -45px;
left: 15px;
background: #34495e;
color: white;
padding: 4px 12px;
border-radius: 12px;
font-size: 12px;
font-weight: 600;
white-space: nowrap;
}
.features {
margin-top: 50px;
padding: 30px;
background: #f8f9fa;
border-radius: 10px;
}
.features h3 {
color: #2c3e50;
margin-bottom: 20px;
}
.feature-item {
margin: 15px 0;
display: flex;
align-items: flex-start;
}
.feature-item strong {
color: #2c3e50;
min-width: 150px;
}
.feature-item p {
margin: 0;
color: #555;
}
</style>
</head>
<body>
<div class="container">
<h2>
3. Prep Process at a Glance</h2>
<div class="flowchart">
<div class="box blue">
<div class="box-title">Daily Cron Job</div>
<div class="box-subtitle">(Auto Assign)</div>
</div>
<div class="arrow">
<span class="arrow-label">Morning</span>
</div>
<div class="box purple">
<div class="box-title">Shift Task Queue</div>
<div class="box-subtitle">(Morning & Evening)</div>
</div>
<div class="arrow">
<span class="arrow-label">Morning</span>
</div>
<div class="box green">
<div class="box-title">Morning Team Huddle</div>
<div class="box-subtitle">(Review & Assign)</div>
</div>
<div class="arrow"></div>
<div class="box red">
<div class="box-title">Task Execution Loop</div>
<div class="box-subtitle">(Start - Hold - End)</div>
</div>
<div class="arrow">
<span class="arrow-label">Evening</span>
</div>
<div class="box orange">
<div class="box-title">Evening Review</div>
<div class="box-subtitle">(Managers)</div>
</div>
<div class="arrow"></div>
<div class="box violet">
<div class="box-title">Shift Summary Close</div>
<div class="box-subtitle">(Reports & Stock)</div>
</div>
</div>
<div class="features">
<h3>Key Features:</h3>
<div class="feature-item">
<strong>Automatic setup:</strong>
<p>Tasks arrive each day without manual effort.</p>
</div>
<div class="feature-item">
<strong>Team planning:</strong>
<p>Leads confirm staffing and priorities during the first huddle.</p>
</div>
<div class="feature-item">
<strong>Live updates:</strong>
<p>Status changes keep everyone informed throughout the shift.</p>
</div>
<div class="feature-item">
<strong>Shift wrap-up:</strong>
<p>Managers close open items, update stock, and generate shift notes.</p>
</div>
</div>
</div>
</body>
</html>