
        .dcc-wrapper {
            display: flex;
            min-height: 100vh;
            max-width: 1400px;
            margin: 0 auto;
            background-color: white;
        }

        /* Left Sidebar */
        .dcc-progress-sidebar {
            width: 280px;
            padding: 40px 30px;
            border-right: 1px solid #e0e0e0;
            background-color: #fafafa;
        }

        .dcc-progress-step {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dcc-progress-step:hover {
            transform: translateX(5px);
        }

        .dcc-step-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .dcc-step-icon.dcc-completed {
            background-color: #ff6b35;
        }

        .dcc-step-icon.dcc-current {
            background-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }

        .dcc-step-icon svg {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 2.5;
            fill: none;
        }

        .dcc-step-label {
            font-size: 15px;
            font-weight: 500;
            color: #333;
        }

        .dcc-progress-step.dcc-completed .dcc-step-label {
            color: #666;
        }

        .dcc-progress-step.dcc-current .dcc-step-label {
            color: #ff6b35;
            font-weight: 600;
        }

        /* Main Content */
        .dcc-main-area {
            flex: 1;
            padding: 60px 80px;
        }

        .dcc-page-header {
            margin-bottom: 15px;
        }

        .dcc-page-title {
            font-size: 32px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .dcc-page-subtitle {
            font-size: 15px;
            color: #666;
            line-height: 1.5;
        }

        .dcc-card {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 35px;
            margin-top: 40px;
        }

        .dcc-welcome-heading {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
        }

        .dcc-table-container {
            overflow-x: auto;
        }

        .dcc-investment-grid {
            width: 100%;
            border-collapse: collapse;
        }

        .dcc-investment-grid thead {
            background-color: #fafafa;
        }

        .dcc-table-header {
            text-align: left;
            padding: 14px 16px;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            border-bottom: 2px solid #e0e0e0;
            white-space: nowrap;
        }

        .dcc-table-cell {
            padding: 16px;
            font-size: 14px;
            color: #333;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: top;
        }

        .dcc-investment-grid tbody tr:last-child .dcc-table-cell {
            border-bottom: none;
        }

        .dcc-date-cell {
            font-weight: 500;
            color: #1a1a1a;
        }

        .dcc-description-cell {
            color: #555;
            line-height: 1.5;
        }

        .dcc-asset-cell {
            color: #333;
        }

        .dcc-amount-cell {
            font-weight: 600;
            text-align: right;
            color: #1a1a1a;
            white-space: nowrap;
        }

        /* Right Sidebar */
        .dcc-quicklinks-sidebar {
            width: 280px;
            padding: 40px 25px;
            border-left: 1px solid #e0e0e0;
            background-color: #fafafa;
        }

        .dcc-sidebar-heading {
            font-size: 14px;
            font-weight: 600;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .dcc-nav-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 18px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dcc-nav-card:hover {
            border-color: #ff6b35;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
            transform: translateX(3px);
        }

        .dcc-nav-info h3 {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .dcc-nav-info p {
            font-size: 12px;
            color: #999;
        }

        .dcc-nav-arrow {
            color: #ccc;
            font-size: 18px;
        }

        @media (max-width: 1200px) {
            .dcc-wrapper {
                flex-direction: column;
            }

            .dcc-progress-sidebar, .dcc-quicklinks-sidebar {
                width: 100%;
                border: none;
                border-bottom: 1px solid #e0e0e0;
            }

            .dcc-main-area {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .dcc-main-area {
                padding: 30px 20px;
            }

            .dcc-page-title {
                font-size: 24px;
            }

            .dcc-card {
                padding: 20px;
            }

            .dcc-table-header,
            .dcc-table-cell {
                padding: 12px;
                font-size: 13px;
            }
        }