\
    .pfcs-floating-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #ffffff;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.12);
        padding: 8px 12px;
    }
    .pfcs-floating-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .pfcs-floating-title {
        font-weight: 600;
        font-size: 16px;
        text-align: center;
    }
    .pfcs-btn {
        border-radius: 999px;
        padding: 8px 18px;
        border: 1px solid transparent;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        line-height: 1.2;
        transition: all 0.2s ease;
        text-align: center;
    }
    .pfcs-btn-call {
        background: #e53935;
        color: #ffffff;
        border-color: #e53935;
    }
    .pfcs-btn-call:hover {
        background: #c62828;
        border-color: #c62828;
    }
    .pfcs-btn-message {
        background: #ffffff;
        color: #e53935;
        border-color: #e53935;
    }
    .pfcs-btn-message:hover {
        background: #ffecec;
    }

    .pfcs-modal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
    }
    .pfcs-modal.pfcs-open {
        display: flex;
    }
    .pfcs-modal-content {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px 24px;
        max-width: 420px;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }
    .pfcs-modal-title {
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 18px;
        font-weight: 600;
    }
    .pfcs-call-number {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
    }
    .pfcs-message-text {
        width: 100%;
        border-radius: 8px;
        border: 1px solid #ccc;
        padding: 8px;
        font-size: 14px;
        resize: vertical;
        margin-bottom: 10px;
    }
    .pfcs-modal-actions {
        display: flex;
        gap: 8px;
        justify-content: flex-end;
        margin-bottom: 8px;
    }
    .pfcs-message-feedback {
        font-size: 13px;
        color: #e53935;
    }

    .pfcs-dashboard-wrapper {
        margin-top: 24px;
        padding: 16px;
        border-radius: 12px;
        background: #f7f8fa;
        border: 1px solid #e0e3ea;
    }
    .pfcs-dashboard-wrapper h2 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .pfcs-plan-info {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .pfcs-dashboard-notice {
        margin-bottom: 16px;
        font-size: 13px;
        color: #555;
    }
    .pfcs-kpi-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 16px;
    }
    .pfcs-kpi-box {
        flex: 1 1 160px;
        background: #ffffff;
        border-radius: 10px;
        padding: 10px 12px;
        border: 1px solid #dde2eb;
    }
    .pfcs-kpi-label {
        font-size: 13px;
        color: #666;
    }
    .pfcs-kpi-value {
        display: block;
        font-size: 20px;
        font-weight: 700;
    }
    .pfcs-kpi-sub {
        display: block;
        font-size: 12px;
        color: #777;
        margin-top: 2px;
    }
    .pfcs-actions-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }
    .pfcs-table {
        width: 100%;
        border-collapse: collapse;
        background: #ffffff;
        border-radius: 10px;
        overflow: hidden;
    }
    .pfcs-table th,
    .pfcs-table td {
        padding: 8px 10px;
        border-bottom: 1px solid #e0e3ea;
        font-size: 13px;
        text-align: left;
    }
    .pfcs-table thead {
        background: #eef1f7;
    }
    .pfcs-table tr:last-child td {
        border-bottom: none;
    }

    @media (max-width: 600px) {
        .pfcs-floating-inner {
            flex-direction: column;
        }
        .pfcs-floating-title {
            font-size: 15px;
        }
    }
