    /* StreamlineConnect Process Page Styles */

body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 14px;
        color: #202223;
        background-color: #f6f6f7;
        margin: 0;
        padding: 0;
    }

    .connector-container {
        margin: 20px auto;
        max-width: 800px;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border: 1px solid #dfe3e8;
    }

    h1, h2, h3 {
        font-weight: 600;
        color: #202223;
        margin-bottom: 12px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 14px;
    }

    p, label, span {
        font-size: 14px;
        color: #6d7175;
        margin-bottom: 8px;
    }
    legend {
        font-size: 12px; font-weight: normal; color: #6d7175;
    }

    input[type="text"], select {
        width: 100%;
        padding: 8px;
        font-size: 14px;
        border: 1px solid #dfe3e8;
        border-radius: 4px;
        box-sizing: border-box;
        margin-bottom: 12px;
    }

    input[type="radio"], input[type="checkbox"] {
        margin-right: 8px;
    }

    button {
        background-color: #008060;
        color: #ffffff;
        border: none;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    button:hover {
        background-color: #006d4f;
    }

    .info-section {
        background-color: #f9fafb;
        border: 1px solid #dfe3e8;
        border-radius: 8px;
        padding: 16px;
        margin: 16px 0;
    }

    .info-title {
        font-size: 14px;
        font-weight: 600;
        color: #202223;
        margin-bottom: 8px;
    }

    .info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-item {
        font-size: 14px;
        color: #6d7175;
        margin-bottom: 4px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 12px;
    }

    table th, table td {
        text-align: left;
        padding: 8px;
        border: 1px solid #dfe3e8;
    }

    table th {
        background-color: #f9fafb;
        font-weight: 600;
        color: #202223;
    }

    table td {
        font-size: 14px;
        color: #6d7175;
    }

    hr {
        border: none;
        border-top: 1px solid #dfe3e8;
        margin: 20px 0;
    }

    .dropdown {
        position: absolute;
        border: 1px solid #dfe3e8;
        background-color: #ffffff;
        z-index: 1000;
        display: none;
        max-height: 150px;
        overflow-y: auto;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .dropdown div {
        padding: 8px;
        font-size: 14px;
        color: #202223;
        cursor: pointer;
    }

    .dropdown div:hover {
        background-color: #f6f6f7;
    }
    .switch-container {
                                            display: flex;
                                            gap: 10px;
                                        }

                                        .switch-button {
                                            padding: 8px 16px;
                                            font-size: 14px;
                                            border: 1px solid #dfe3e8;
                                            border-radius: 4px;
                                            background-color: #f6f6f7;
                                            color: #202223;
                                            cursor: pointer;
                                            transition: background-color 0.2s ease, color 0.2s ease;
                                        }

                                        .switch-button.active {
                                            background-color: #008060;
                                            color: #ffffff;
                                            border-color: #008060;
                                        }

                                        .switch-button:hover {
                                            background-color: #006d4f;
                                            color: #ffffff;
                                        }
