    
    
    .lx-patient-search-result {
        background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
        border: 1px solid #dfeaf2;
        /*border-radius: 18px;*/
        box-shadow: 0 10px 30px rgba(28, 73, 122, 0.08);
        padding: 15px;
    }

    .lx-patient-search-result__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid #e6eef5;
    }

    .lx-patient-search-result__title-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .lx-patient-search-result__title {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #17324d;
        line-height: 1.2;
    }

    .lx-patient-search-result__count {
        display: inline-block;
        padding: 6px 12px;
        background: #eaf6ff;
        color: #1976b6;
        font-size: 12px;
        font-weight: 600;
        border-radius: 999px;
    }

    .lx-patient-search-result__hint {
        display: inline-block;
        padding: 6px 12px;
        background: #f2f8fc;
        color: #5d7488;
        font-size: 12px;
        border-radius: 999px;
    }

    .lx-patient-search-result__list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .lx-patient-card {
        /*display: flex;*/
        /*align-items: flex-start;*/
        /*gap: 16px;*/
        background: #ffffff;
        border: 1px solid #e4edf4;
        border-radius: 8px;
        /*padding: 16px;*/
        transition: all 0.22s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .lx-patient-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(28, 73, 122, 0.10);
        border-color: #cfe2ee;
    }

    .lx-patient-card:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #2db7f5 0%, #22c38e 100%);
        opacity: 0;
        transition: opacity 0.22s ease;
    }

    .lx-patient-card:hover:before {
        opacity: 1;
    }

    .lx-patient-card__avatar {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 14px;
        overflow: hidden;
        background: linear-gradient(135deg, #dff4ff 0%, #cdeee6 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1d5f84;
        font-size: 20px;
        font-weight: 700;
        box-shadow: inset 0 0 0 1px rgba(25, 118, 182, 0.08);
    }

    .lx-patient-card__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .lx-patient-card__body {
        flex: 1;
        min-width: 0;
    }

    .lx-patient-card__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .lx-patient-card__name {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #163149;
        line-height: 1.3;
    }

    .lx-patient-card__status {
        padding: 5px 10px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        border-radius: 999px;
    }

    .lx-patient-card__status--active {
        background: #e9fbf3;
        color: #159a65;
    }

    .lx-patient-card__status--pending {
        background: #fff7e8;
        color: #d38a10;
    }

    .lx-patient-card__status--inactive {
        background: #f4f6f8;
        color: #748494;
    }

    .lx-patient-card__info {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 18px;
        margin-bottom: 12px;
        color: #5d7284;
        font-size: 13px;
        line-height: 1.6;
    }

    .lx-patient-card__info span {
        white-space: nowrap;
    }

    .lx-patient-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .lx-patient-card__location {
        color: #7a8d9d;
        font-size: 12px;
    }

    .lx-patient-card__action {
        border: 0;
        background: linear-gradient(135deg, #1fa8f3 0%, #1fc48d 100%);
        color: #ffffff;
        padding: 10px 16px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.2s ease;
        box-shadow: 0 8px 18px rgba(31, 168, 243, 0.18);
    }

    .lx-patient-card__action:hover {
        opacity: 0.95;
        transform: translateY(-1px);
    }

    .lx-patient-card__action:focus {
        outline: none;
    }

    @media (max-width: 768px) {
        .lx-patient-search-result {
            padding: 16px;
            border-radius: 14px;
        }

        .lx-patient-card {
            padding: 14px;
            border-radius: 14px;
        }

        .lx-patient-card__name {
            font-size: 16px;
        }

        .lx-patient-card__info {
            font-size: 12px;
            gap: 6px 12px;
        }

        .lx-patient-card__footer {
            align-items: flex-start;
            flex-direction: column;
        }

        .lx-patient-card__action {
            width: 100%;
        }
    }
    
    