  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #fff;
            
            line-height: 1.4;
            margin: 0;
        }

      

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .fluid_container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 3%;
        }

        .section_padding_top{margin-top: 80px;}

        .header {
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .header p {
            color: #000000;
            font-size:  23px;
        }

        .workflow {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .phase {
            background: #d5d5d5;
           
            padding:10%;
            min-height: 600px;
        }

        .phase-title {
            font-weight:800;
            font-size: 25px;
     
            min-height: 85px;
          
            color: #000000;
        }

        .section {
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 14px;
            line-height:18px;
            font-weight: 700;
            opacity: 0.8;
            color: #000000;
            margin-bottom:10px;
        }

        .task {
            background: white;
            /* border-radius: 4px; */
            padding: 16px 8%;
            text-decoration: none;
            margin-bottom: 6px;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .task:hover {
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transform: translateY(-1px);
        }

        .task-text {
            flex: 1;
            color: #374151;
        }

        .task-owner  {
            font-weight: 600;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 100%;
            margin-left: 8px;
            aspect-ratio: 2/2;
            width: 35px;
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        /* Owner color coding */
        .owner-st { background: #dbeafe; color: #1e40af; }
        .owner-dl { background: #dcfce7; color: #166534; }
        .owner-dev { background: #fef3c7; color: #92400e; }
        .owner-qa { background: #fce7f3; color: #be185d; }
        .owner-pc { background: #e0e7ff; color: #3730a3; }
        .owner-fe { background: #fed7d7; color: #c53030; }
        .owner-pm { background: #f0fff4; color: #22543d; }
        .owner-if { background: #edf2f7; color: #2d3748; }

        .subsection {
            margin-left: 12px;
            margin-bottom: 12px;
        }

        .subsection-title {
            font-weight: 500;
            font-size: 12px;
            margin-bottom: 6px;
            color: #4b5563;
        }

        @media (max-width: 1200px) {
            .workflow {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .workflow {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .phase {
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            .workflow {
                grid-template-columns: 1fr;
            }
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
        }

        .close {
            float: right;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        .close:hover {
            color: #333;
        }



        /* second--page----------------- */


        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

       
        .next-sops {
            color: #6b7280;
            font-size: 14px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .next-sops:hover {
            color: #374151;
        }

        .phase-section {
            background: white;
            border-radius: 8px;
           
            margin-bottom: 20px;
            overflow: hidden;
        }

        .phase-header {
       
            padding: 12px  0px;
            /* margin-bottom: 10px; */
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight:500;
            color: #000;
            background: #d8d8d8;
        }

        .phase-duration {
            font-size: 14px;
            color: #000;
        }

        .table-container {
            overflow-x: auto;
        }

        .table-container td{ font-size: 13px;}
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th {
            background: #f9fafb;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            color: #374151;
            border-bottom: 2px solid #e5e7eb;
            font-size: 14px;
        }

        td {
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: top;
        }

        tr:hover {
            background: #f8f9fa;
        }

        .task-cell {
            font-weight: 500;
            color: #1f2937;
            min-width: 300px;
        }

        .role-badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            margin: 2px;
            text-transform: uppercase;
        }

        .role-pm { background: #dbeafe; color: #1e40af; }
        .role-pc { background: #e0e7ff; color: #3730a3; }
        .role-st { background: #dcfce7; color: #166534; }
        .role-dl { background: #fef3c7; color: #92400e; }

        .tool-item {
            display: inline-flex;
            align-items: center;
            margin: 2px 4px;
            padding: 4px 8px;
            /* background: #f3f4f6; */
            border-radius: 4px;
            font-size: 12px;
            color: #374151;
            font-weight:600;
        }

        .tool-icon {
            /* width: 16px;
            height: 16px; */
            width: 24px;
            width: 25px;
            margin-right: 6px;
            border-radius: 2px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
        }

        .tool-icon.gear::before {
            content: "⚙";
        }

        .tool-icon.template::before {
            content: "📄";
        }

        .checklist-item {
            background: #fef3c7;
            color: #92400e;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            display: inline-block;
        }

        .tools-cell {
            min-width: 200px;
        }

        .outcome-cell {
            min-width: 150px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .header h1 {
                font-size: 20px;
            }

            th, td {
                padding: 8px;
                font-size: 12px;
            }

            .task-cell {
                min-width: 200px;
            }
        }

        .clickable-area {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            cursor: pointer;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 30px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .close {
            float: right;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            margin-top: -20px;
        }

        .close:hover {
            color: #333;
        }

        .next-sops{ text-align: right;}
        .next-sops h3{ font-size: 20px; font-weight: 500; color: #000;}
        .table-container table thead th{ background: #d8d8d8; color: #000; font-weight: 300;}
        .table-container table thead :first-child{ padding-left: 0;}
        .table-container table thead :last-child{ padding-right: 0;}
        .table-container tr td { border-bottom: 15px solid #d8d8d8; vertical-align: middle;}

        .task-cell{ width: 36%;}
        .task-cell-2{ width:7%;}
        .task-cell-3{ width:10%;}
        .task-cell-4{ width: 12%;}
        .tools-cell{ width: 33%;}
        .outcome-cell{ width:17%;}

        .role-fe,.role-dev,.role-if, .role-qa, .role-ac{ background: #e0e7ff; color: #3730a3;}
        .text-right{ text-align: right; justify-content: flex-end;}

        .task-cell span{}

        .tool-link{ display: flex;  align-items: center; color: #000; text-decoration: none;}
        .block-aligh{ display: flex; flex-wrap: wrap; justify-content: space-between;}

        .task-cell-4{ width: 16%;}


        @media (max-width: 1440px) {
                td{     padding: 11px;}
                .task-owner{    margin-left: 3px;}

        }