/* CNTX Pipeline Table Styles */
.context-pipeline-table {
width: 100%;
border-collapse: separate;
border-spacing: 0 24px;
font-family: 'Montserrat', Arial, sans-serif;
background: #fff;
}
.context-pipeline-table th,
.context-pipeline-table td {
text-align: left;
padding: 18px 24px;
border: none;
}
.context-pipeline-table th {
background: #153d6a;
color: #fff;
font-weight: 700;
font-size: 1.08rem;
letter-spacing: 1px;
border-right: 2px solid #fff;
}
.context-pipeline-table td {
font-size: 1.04rem;
color: #153d6a;
vertical-align: middle;
}
.context-pipeline-table .program {
font-weight: 700;
font-size: 1.16rem;
color: #1d4475;
}
.context-pipeline-table .arrow-bar {
height: 36px;
background: linear-gradient(90deg, #174883 67%, #fff 100%);
border-radius: 24px 24px 24px 0;
position: relative;
min-width: 180px;
}
.context-pipeline-table .arrow-bar:after {
content: '';
display: block;
position: absolute;
right: 0;
top: 0;
width: 32px;
height: 36px;
background: linear-gradient(90deg, #174883 0%, #fff 100%);
clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
.context-pipeline-table .divider-row td {
border-bottom: 2px solid #d6e1ec;
padding-bottom: 0;
}
@media (max-width: 900px) {
.context-pipeline-table th, .context-pipeline-table td {
padding: 12px 8px;
font-size: 0.96rem;
}
.context-pipeline-table .arrow-bar {
height: 24px;
min-width: 120px;
}
}