.arc-spec-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .arc-spec-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
            margin-bottom: 10%;
        }

        .arc-spec-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ececec;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .arc-spec-header {
    display: flex;
    position: relative;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.arc-spec-header-left {
    flex: 0 0 25%;
    padding: 16px 20px;
    text-align: center;
    background-color: #F15B2B;
    border-radius: 24px 24px 0 0;  /* Only top-left rounded */
    z-index: 2;
}

.arc-spec-header-right {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
    background-color: #5D2F7D;
    border-radius: 24px 24px 0 0;  /* Top-left and top-right rounded */
    margin-left: 0px;  /* Overlap to create the layered effect */
    padding-left: 32px;  /* Compensate for the overlap */
    z-index: 1;
}

        .arc-spec-table-container {
            overflow-x: auto;
        }

        .arc-spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .arc-spec-row {
            border-bottom: 1px solid #e0e0e0;
        }

        .arc-spec-row:last-child {
            border-bottom: none;
        }

        .arc-spec-row:nth-child(odd) {
            background-color: #FFFAF6;
        }

        .arc-spec-row:nth-child(even) {
            background-color: white;
        }

        .arc-spec-cell {
            padding: 16px 20px;
            font-size: 14px;
            color: #333;
        }

        .arc-spec-cell-code {
            font-weight: 600;
            width: 25%;
            text-align: center;
        }

        .arc-spec-cell-category {
            width: 75%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .arc-spec-wrapper {
                padding: 10px;
            }

            /*.arc-spec-header {*/
            /*    flex-direction: column;*/
            /*}*/

            /*.arc-spec-header-left,*/
            /*.arc-spec-header-right {*/
            /*    flex: 1;*/
            /*    padding: 12px 16px;*/
            /*}*/

            .arc-spec-cell {
                padding: 12px 16px;
                font-size: 13px;
            }

            .arc-spec-cell-code {
                width: 20%;
            }

            .arc-spec-cell-category {
                width: 80%;
            }
        }

        @media (max-width: 480px) {
            .arc-spec-container {
                border-radius: 8px;
            }

            .arc-spec-header-left,
            .arc-spec-header-right {
                font-size: 14px;
                padding: 10px 12px;
            }

            .arc-spec-cell {
                padding: 10px 12px;
                font-size: 12px;
            }

            .arc-spec-cell-code {
                width: 15%;
                font-size: 13px;
            }

            .arc-spec-cell-category {
                width: 85%;
            }
        }