* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f6f8;
    color: #333;
    padding: 40px 20px;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
     overflow-y: auto;  
}

header {
    background: #1e293b;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

header h1 { margin-bottom: 8px; font-weight: 600; }
header p { color: #94a3b8; font-size: 0.95rem; }

/* Sections */
section {
    padding: 30px;
    border-bottom: 1px solid #e2e8f0;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #475569;
}

input[type="text"], select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

input[type="text"]:focus, select:focus {
    border-color: #3b82f6;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background-color: #2563eb;
}

/* Pipeline / Status Tracking (Flexbox Layout) */
.pipeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 15px;
}

.pipeline-step {
    flex: 1;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.pipeline-step .step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pipeline-step h3 {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 6px;
}

.pipeline-step p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Active State Styling */
.pipeline-step.active {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.pipeline-step.active h3 {
    color: #2563eb;
}
