.mp-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mp-container-blocks{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mp-row-container-blocks{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

:root {
    --thead-bg:#D3D7E0;
    --border:#EFF0F3;
    --green-bg:#EBF6EB; --green-fg:#31AA27;
    --amber-bg:#FFF4E4; --amber-fg:#E99518;
    --red-bg:#FFF0F0;   --red-fg:#F93232;
}
.card-funnel-table {
    width:100%;
    border-collapse:collapse;
    border:1px solid var(--border);
}

.card-funnel-table thead th {
    background: var(--thead-bg);
    font-weight: 600;
    padding: 12px 8px;
    text-align: left;
    border: 1px solid var(--border);
}
.card-funnel-table tbody td {
    padding:8px; border:1px solid var(--border); background:#fff;
}
.card-funnel-table .badge{
    display:inline-block;
    padding:4px 8px;
    border-radius:13px;
    font-size:14px;
}
.badge.green{background:var(--green-bg);color:var(--green-fg)}
.badge.amber{background:var(--amber-bg);color:var(--amber-fg)}
.badge.red{background:var(--red-bg);color:var(--red-fg)}

.mp-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.mp-card {
    display: flex;
    gap: 8px;
    border-radius: 12px;
    flex-direction: column;
    margin-bottom: 24px;
}

.mp-header {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.mp-name-input {
    font-size: 14px;
    padding: 6px 10px;
    border: 1px solid #D3D7E0;
    border-radius: 8px;
    background: #fff;
}

.mp-edit-name,
.mp-save-name {
    border: none;
    background: transparent;
    cursor: pointer;
}

.mp-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
    background: #EFF0F3;
}

.mp-table th,
.mp-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #E5E7EB;
    text-align: center;
}

.mp-table th {
    background: #D3D7E0;
    font-weight: 600;
}

.row-label {
    text-align: left;
    font-weight: 600;
    background: #D3D7E0;
}

.row-value{
    background: #FFFFFF;
}

.mp-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mp-status {
    display: flex;
    font-weight: 400;
    color: #2563EB;
    line-height: 20px;
    align-items: center;
    gap: 4px;
}

.mp-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.progress-bar {
    position: relative;
    width: 540px;
    height: 32px;
    border: 1px solid #D3D7E0;
    border-radius: 999px;
    background: #FFFFFF;
    overflow: hidden;
    padding: 6px;
}

.progress-fill {
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    right: 6px;
    height: 20px;
    background: #C8D4FF;
    border-radius: 20px;
}

.progress-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #3B3F46;
}

.mp-open-btn {
    margin-left: auto;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #2563EB;
    color: #2563EB;
    background: #fff;
    cursor: pointer;
}

.mp-save-name {
    height: 24px;
    width: 24px;
    background: url("/img/Check.svg") no-repeat center center;
    background-size: contain;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: inline-block;
}

.mp-name {
    display: inline-block;
}
.input-field-name-width{
    width: auto;
}