    /* StreamlineConnect Main View (Dashboard) Styles */

.pfc-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        color: #1d1d1f;
        margin: 20px auto;
        max-width: 1200px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .pfc-box {
        background-color: #f5f5f7;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        width: 100%;
    }
    .pfc-box-content {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .pfc-text {
        font-size: 16px;
        line-height: 1.5;
    }
    .pfc-text-subdued {
        color: #6e6e73;
    }
    .pfc-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 16px;
        background: #008060;
        border: 1px solid transparent;
        border-radius: 4px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        position: relative;
        white-space: nowrap;
    }
    .pfc-button:hover {
        background: #006e52;
        border-color: transparent;
        text-decoration: none;
    }
    .pfc-button:focus {
        outline: none;
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #008060;
    }
    .pfc-button:active {
        background: #005e46;
        border-color: transparent;
    }
    .pfc-button--secondary {
        background: #ffffff;
        border: 1px solid #008060;
        color: #008060;
    }
    .pfc-button--secondary:hover {
        background: #f6f6f7;
        border-color: #008060;
        color: #008060;
    }
    .pfc-button--secondary:focus {
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #008060;
    }
    .pfc-button--secondary:active {
        background: #f6f6f7;
        border-color: #008060;
        color: #008060;
    }
    .pfc-button--danger {
        background: #dc2626;
        border-color: transparent;
    }
    .pfc-button--danger:hover {
        background: #b91c1c;
        border-color: transparent;
    }
    .pfc-button--danger:focus {
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #dc2626;
    }
    .pfc-button--danger:active {
        background: #991b1b;
        border-color: transparent;
    }
    .pfc-button__icon {
        margin-right: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .pfc-button:disabled {
        background: #f6f6f7;
        border-color: #d2d2d7;
        color: #8c9196;
        cursor: not-allowed;
    }
    .pfc-button--secondary:disabled {
        background: #f6f6f7;
        border-color: #d2d2d7;
        color: #8c9196;
    }
    .pfc-button--danger:disabled {
        background: #f6f6f7;
        border-color: #d2d2d7;
        color: #8c9196;
    }
    /* Modal styles consolidated in admin.css */
    .popup-content {
        text-align: center;
    }
    .popup-content form {
        margin-bottom: 20px;
    }
    .popup-content label {
        display: block;
        margin-bottom: 5px;
        font-size: 14px;
        color: #1d1d1f;
    }
    .popup-content input {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #d2d2d7;
        border-radius: 8px;
        font-size: 14px;
    }
    .pfc-input {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        color: #1d1d1f;
        background-color: #f5f5f7;
        border: 1px solid #d2d2d7;
        border-radius: 8px;
        padding: 10px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }
    .pfc-input:focus {
        border-color: #0071e3;
        outline: none;
    }
    .pfc-assistants-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        width: 100%;
    }

    .pfc-assistants-header__text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pfc-assistants-header__text h2 {
        font-size: 20px;
        margin: 0;
        line-height: 1.2;
    }

    .pfc-assistants-header__text p {
        color: #6e6e73;
        margin: 4px 0 0 0;
        line-height: 1.4;
    }

    .pfc-assistants-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        padding: 16px 0;
        width: 100%;
        justify-content: center;
    }

    .pfc-assistant-card {
        background: white;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        position: relative;
        display: flex
    ;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 160px;
        flex: 1 1 calc(26.333% - 20px);
        min-width: 150px;
        max-width: calc(33.333% - 24px);
    }

    @media (max-width: 1200px) {
        .pfc-assistant-card {
            flex: 1 1 calc(50% - 24px);
            max-width: calc(50% - 24px);
        }
    }

    @media (max-width: 768px) {
        .pfc-assistant-card {
            flex: 1 1 100%;
            max-width: 100%;
        }
    }

    .pfc-assistant-card__icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .pfc-assistant-card__content {
        width: 100%;
    }

    .pfc-assistant-card__title {
        font-size: 16px;
        margin: 0;
        color: #1d1d1f;
    }

    .pfc-assistant-card__menu {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 10;
    }

    .pfc-menu-button {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: #6e6e73;
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 4px;
    }

    .pfc-menu-button:hover {
        color: #1d1d1f;
        background-color: #f5f5f7;
    }

    .pfc-menu-dropdown {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        min-width: 180px;
        z-index: 1000;
        margin-top: 8px;
    }

    .pfc-menu-dropdown.active {
        display: block;
    }

    .pfc-menu-item {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        color: #1d1d1f;
        text-decoration: none;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        font-size: 14px;
    }

    .pfc-menu-item:hover {
        background: #f5f5f7;
    }

    .pfc-menu-item__icon {
        margin-right: 12px;
        font-size: 16px;
    }

    .Polaris-Page-Header__Row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .Polaris-Page-Header__TitleWrapper {
        flex: 1;
    }

    .Polaris-Page-Header__RightAlign {
        margin-left: 24px;
        display: flex;
        align-items: center;
    }

    .Polaris-Page-Header--mediumTitle {
        margin-top: 32px;
        margin-bottom: 24px;
    }

    .pfc-box--endpoints {
        margin-top: 24px;
    }

    .pfc-endpoints-header {
        margin-bottom: 24px;
    }

    .pfc-endpoints-header h2 {
        font-size: 20px;
        margin: 0 0 8px 0;
    }

    .pfc-endpoints-header p {
        color: #6e6e73;
        margin: 0;
    }

    .pfc-endpoints-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .pfc-endpoint-card {
        background: white;
        border-radius: 8px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .pfc-endpoint-card__icon {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .pfc-endpoint-card__content {
        flex: 1;
    }

    .pfc-endpoint-card__content h3 {
        font-size: 16px;
        margin: 0 0 8px 0;
        color: #1d1d1f;
    }

    .pfc-endpoint-card__content p {
        color: #6e6e73;
        margin: 0 0 16px 0;
        font-size: 14px;
        line-height: 1.4;
    }

    .pfc-subscription-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 16px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .pfc-subscription-plan {
        color: #1d1d1f;
        font-weight: 500;
    }

    .pfc-subscription-badge .pfc-button {
        padding: 4px 12px;
        font-size: 13px;
    }

    .input-group {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .toggle-password {
        padding: 5px 10px;
        background-color: #f6f6f7;
        border: 1px solid #dfe3e8;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        color: #202223;
    }
    .toggle-password:hover {
        background-color: #e4e5e7;
    }
