/* Paiement & cautions – structure */

.lk-pp-wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* =============================
   Onglets Paiement & cautions
   – même style que Paramètres
   ============================= */

.lk-pp-main-tabs,
.lk-pp-sub-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 10px;
}

/* pastilles d’onglets : copie du style .lk-tab-link */
.lk-pp-main-tab,
.lk-pp-sub-tab {
    font-size: 12px;
    padding: 7px 16px;
    border-radius: 15px;
    text-decoration: none;
    border: 1px solid rgba(15, 124, 199, 0.55);  /* même bleu */
    color: #0f7cc7;
    background: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition:
        background 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.08s ease;
}

.lk-pp-main-tab:hover,
.lk-pp-sub-tab:hover {
    background: #e0f2ff;
    color: #0b4f82;
    transform: translateY(-1px);
}

.lk-pp-main-tab.is-active,
.lk-pp-sub-tab.is-active {
    background: #0f7cc7;
    color: #ffffff;
    border-color: #0f7cc7;
    box-shadow: 0 4px 10px rgba(15, 124, 199, 0.35);
}


.lk-pp-info {
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid currentColor;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    position: relative;
}

.lk-pp-info::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 130%;
    background: #111827;
    color: #f9fafb;
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.4;
    white-space: normal;
    min-width: 220px;
    max-width: 280px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 50;
}

.lk-pp-info:hover::after {
    opacity: 1;
}

/* Panels */

.lk-pp-panel {
    display: none;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 18px;
    background: #ffffff;
}

.lk-pp-panel.is-active {
    display: block;
}

.lk-pp-panel-header h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
}

.lk-pp-panel-intro {
    margin: 0 0 16px;
    font-size: 13px;
    color: #6b7280;
}

/* Formulaire */

.lk-pp-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.lk-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lk-form-row-inline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
}

.lk-label {
    font-size: 13px;
    font-weight: 500;
}

.lk-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.lk-input,
.lk-textarea,
.lk-pp-link-input {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    font-size: 13px;
    width: 100%;
}

.lk-textarea {
    min-height: 90px;
    resize: vertical;
}

.lk-help {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
}

.lk-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
}

/* Boutons */

.lk-btn {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 7px 14px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lk-btn-primary {
    background: #111827;
    color: #ffffff;
}

.lk-btn-secondary {
    background: #f3f4f6;
    color: #111827;
    border-color: #e5e7eb;
}

.lk-btn-outline {
    background: #ffffff;
    color: #111827;
    border-color: #d1d5db;
}

.lk-btn-danger {
    background: #b91c1c;
    color: #ffffff;
}

/* Tableau */

.lk-pp-table-wrapper {
    overflow-x: auto;
}

.lk-pp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.lk-pp-table th,
.lk-pp-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.lk-pp-link-input {
    max-width: 260px;
}

.lk-pp-qr {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.lk-pp-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lk-pp-inline-form {
    display: inline;
}

.lk-pp-usage {
    font-size: 11px;
    color: #6b7280;
}

/* Notices */

.lk-pp-notice {
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
}

.lk-pp-notice-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.lk-pp-notice-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Responsive */

@media (max-width: 640px) {
    .lk-pp-panel {
        padding: 14px;
    }

    .lk-pp-table th,
    .lk-pp-table td {
        font-size: 12px;
        padding: 6px 8px;
    }

    .lk-pp-qr {
        width: 48px;
        height: 48px;
    }
	
	.lk-pp-main-tabs,
    .lk-pp-sub-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

/* ============================
   Page publique paiement/caution
   ============================ */

.lk-public-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: #f3f4f6;
}

.lk-public-card {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    padding: 24px 24px 32px;
    box-sizing: border-box;
}

.lk-public-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.lk-public-logo img {
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
}

.lk-public-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.lk-public-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.lk-public-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lk-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.3;
}

.lk-badge-mode {
    background: #eff6ff;
    color: #1d4ed8;
}

.lk-badge-ephemere {
    background: #fef3c7;
    color: #92400e;
}

.lk-public-amount {
    margin: 6px 0 12px;
    font-weight: 500;
    color: #111827;
}

.lk-public-intro {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 16px;
}

.lk-public-intro p {
    margin: 0 0 6px;
}

.lk-public-ephemere {
    font-size: 0.85rem;
    color: #92400e;
}

.lk-public-form-wrapper {
    margin-top: 8px;
    margin-bottom: 20px;
}

.lk-public-warning {
    padding: 12px 14px;
    border-radius: 10px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.9rem;
}

.lk-public-checkout {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lk-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lk-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
}

.lk-field input[type="email"],
.lk-field input[type="text"] {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 9px 11px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lk-field input[type="email"]:focus,
.lk-field input[type="text"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.lk-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lk-field-checkbox {
    font-size: 0.85rem;
    color: #4b5563;
}

.lk-field-checkbox input[type="checkbox"] {
    margin-right: 6px;
}

#lk-public-card-number,
#lk-public-card-expiry,
#lk-public-card-cvc {
    padding: 9px 11px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
}

.lk-btn-primary {
    margin-top: 4px;
    padding: 11px 14px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.12s ease, transform 0.08s ease;
}

.lk-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.lk-btn-primary:active {
    transform: translateY(0);
}

.lk-public-msg {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #111827;
    min-height: 1.2em;
}

.lk-public-cgv {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: 8px;
}

.lk-public-cgv h2 {
    font-size: 1rem;
    margin: 0 0 8px;
}

.lk-public-cgv-content {
    max-height: 260px;
    overflow: auto;
    padding-right: 8px;
    font-size: 0.85rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 640px) {
    .lk-public-card {
        padding: 20px 16px 24px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    }

    .lk-field-grid {
        grid-template-columns: 1fr;
    }
}
/* Wrapper & card déjà existants, on les garde mais on renforce un peu */
.lk-public-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: #f3f4f6;
}

.lk-public-card {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    padding: 24px 24px 32px;
    box-sizing: border-box;
}



/* Logo marchand */
.lk-public-merchant-logo {
    display: flex;
    justify-content: center;
    margin: 8px 0 14px;
}

.lk-public-merchant-logo img {
    max-height: 72px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Header texte */
.lk-public-header {
    text-align: left;
    margin-bottom: 18px;
}

.lk-public-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px;
}

.lk-public-subtitle {
    margin: 0 0 2px;
    font-size: 0.95rem;
    color: #1f2933;
    font-weight: 500;
}

.lk-public-context {
    margin: 0 0 2px;
    font-size: 0.9rem;
    color: #4b5563;
}

.lk-public-type {
    margin: 0;
    font-size: 0.82rem;
    color: #6b7280;
}

/* Grille de champs */
.lk-field-grid.lk-field-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Ligne numéro de carte + logos */
.lk-card-number-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lk-card-number-row #lk-public-card-number {
    flex: 1;
}

.lk-card-logos {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #4b5563;
}

.lk-card-logo-text {
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    padding: 2px 6px;
    font-weight: 600;
}

.lk-card-logo-img {
    height: 18px;
    border-radius: 4px;
}

/* Bouton désactivé */
.lk-btn-primary.lk-btn-disabled,
.lk-btn-primary[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message SCA */
.lk-public-sca {
    margin-top: 10px;
    font-size: 0.78rem;
    color: #6b7280;
}

/* Confirmation bloc */
.lk-public-confirmation {
    margin-top: 12px;
}

.lk-public-confirmation h2 {
    font-size: 1.1rem;
    margin: 0 0 6px;
}

.lk-public-confirmation-text {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #111827;
}

/* Modal CGV */
.lk-cgv-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.lk-cgv-modal.is-open {
    display: block;
}

.lk-cgv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.lk-cgv-modal-content {
    position: relative;
    max-width: 720px;
    max-height: 80vh;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
}

.lk-cgv-modal-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lk-cgv-modal-header h2 {
    margin: 0;
    font-size: 1rem;
}

.lk-cgv-modal-close {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}

.lk-cgv-modal-body {
    padding: 12px 16px 16px;
    overflow: auto;
    font-size: 0.85rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 640px) {
    .lk-public-card {
        padding: 20px 14px 26px;
        border-radius: 14px;
    }

    .lk-field-grid.lk-field-grid-2 {
        grid-template-columns: 1fr;
    }

    .lk-card-number-row {
        flex-direction: column;
        align-items: stretch;
    }

    .lk-card-logos {
        justify-content: flex-start;
    }

    .lk-cgv-modal-content {
        margin: 20px 12px;
        max-height: 85vh;
    }
}







/* Logos cartes en image */
.lk-card-logos {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lk-card-logo-img {
    height: 18px;
    width: auto;
    border-radius: 4px;
    background: #ffffff;
}

/* Message SCA : moins d'espace */
.lk-public-sca {
    margin-top: 4px;
    font-size: 0.78rem;
    color: #6b7280;
}

/* Petit popup discret pour explication */
.lk-public-popup {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #92400e;
    background: #fffbeb;
    border-radius: 8px;
    padding: 6px 8px;
    border: 1px solid #fbbf24;
}

/* Bouton visuellement désactivé */
.lk-btn-primary.lk-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Bouton qui entoure le QR dans la liste */
.lk-pp-qr-btn {
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
.lk-pp-qr {
    width: 60px;
    height: 60px;
}

/* Modal QR code */
.lk-qr-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.lk-qr-modal.is-open {
    display: block;
}

.lk-qr-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.lk-qr-content {
    position: relative;
    max-width: 340px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    padding: 16px 16px 18px;
    text-align: center;
    box-sizing: border-box;
}

.lk-qr-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px;
}

.lk-qr-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.lk-qr-message {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #16a34a;
}

/* Responsive modal */
@media (max-width: 640px) {
    .lk-qr-content {
        margin: 40px 12px;
    }
}


/* ===========================
   PAGE PUBLIQUE LOCKIPAY
   =========================== */

body.lockipay-public-page {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #f1f6ff 0, #e6efff 38%, #f7f9fc 100%);
    color: #1b2430;
}

/* Wrapper principal */
.lk-public-wrapper {
    min-height: 100vh;
    padding: 40px 16px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Carte centrale */
.lk-public-card {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
    padding: 28px 28px 30px;
    box-sizing: border-box;
}

/* Logo marchand éventuel */
.lk-public-merchant-logo {
    text-align: left;
    margin-bottom: 10px;
}
.lk-public-merchant-logo img {
    max-height: 120px;
    width: auto;
}

/* Header titre + phrase de contexte */
.lk-public-header {
    margin-bottom: 22px;
}
.lk-public-title {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.lk-public-context {
    margin: 0;
    font-size: 14px;
    color: #5f6c80;
}

/* ===========================
   FORMULAIRE
   =========================== */

.lk-public-form-wrapper {
    margin-top: 8px;
}

.lk-public-checkout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Grille 2 colonnes */
.lk-field-grid.lk-field-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

/* Champ générique */
.lk-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lk-field label {
    font-size: 13px;
    font-weight: 500;
    color: #3b4252;
}

/* Inputs / select */
.lk-field input[type="text"],
.lk-field input[type="email"],
.lk-field input[type="tel"],
.lk-field input[type="date"],
.lk-field input[type="number"],
.lk-field select {
    border-radius: 11px;
    border: 1px solid #dde3f1;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    background-color: #fbfcff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.lk-field input::placeholder {
    color: #a0aec0;
    font-size: 13px;
}

.lk-field input:focus,
.lk-field select:focus {
    border-color: #0f7cc7;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 124, 199, 0.2);
}

/* ===========================
   STRIPE CARD ELEMENTS
   =========================== */

.lk-card-number-wrapper {
    border-radius: 11px;
    border: 1px solid #dde3f1;
    background-color: #fbfcff;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
}

#lk-public-card-number {
    flex: 1;
    min-height: 22px;
}

.lk-card-logos-inside {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lk-card-logo-img {
    height: 20px;
    width: auto;
}

/* Expiration / CVC */
.lk-card-row-grid {
    align-items: flex-start;
}
#lk-public-card-expiry,
#lk-public-card-cvc {
    border-radius: 11px;
    border: 1px solid #dde3f1;
    background-color: #fbfcff;
    padding: 9px 10px;
    min-height: 22px;
}

/* ===========================
   CHECKBOX CGV
   =========================== */

.lk-field.lk-field-checkbox {
    margin-top: 4px;
    font-size: 13px;
    color: #4a5568;
}
.lk-field.lk-field-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
}
.lk-field.lk-field-checkbox input[type="checkbox"] {
    margin-top: 2px;
}
.lk-cgv-link {
    color: #0f7cc7;
    text-decoration: underline;
    font-size: 12px;
}

/* ===========================
   BOUTON PRINCIPAL
   =========================== */

.lk-btn-primary {
    margin-top: 10px;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(90deg, #34b3ff 0%, #0f7cc7 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 124, 199, 0.35);
    transition: transform 0.08s ease, box-shadow 0.12s ease, opacity 0.1s ease;
}
.lk-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 124, 199, 0.4);
}
.lk-btn-primary.lk-btn-disabled {
    opacity: 0.6;
    cursor: default;
    box-shadow: none;
}

/* Message SCA / info en bas du formulaire */
.lk-public-sca {
    margin-top: 10px;
    font-size: 11px;
    color: #94a3b8;
}

/* Message dynamique (erreur / succès) */
.lk-public-msg {
    margin-top: 8px;
    font-size: 13px;
    min-height: 16px;
}
.lk-public-msg.lk-public-msg-error {
    color: #b91c1c;
}
.lk-public-msg.lk-public-msg-success {
    color: #15803d;
}

/* ===========================
   "Lien de paiement réalisé avec Lockipay.fr"
   =========================== */

.lk-powered-bottom {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e7e7e9;
    color: #282868;
    font-size: 11px;
}
.lk-powered-logo {
    height: 80px;
    width: 80px;
    border-radius:999px;
    object-fit: cover;
}
.lk-powered-text {
    white-space: nowrap;
}

/* ===========================
   MODAL CGV
   =========================== */

.lk-cgv-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.lk-cgv-modal[aria-hidden="false"] {
    display: flex;
}
.lk-cgv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
}
.lk-cgv-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
}
.lk-cgv-modal-header {
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lk-cgv-modal-header h2 {
    margin: 0;
    font-size: 16px;
}
.lk-cgv-modal-close {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}
.lk-cgv-modal-body {
    padding: 16px 18px 18px;
    font-size: 13px;
    color: #4b5563;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .lk-public-wrapper {
        padding: 20px 10px;
    }
    .lk-public-card {
        padding: 20px 16px 22px;
        border-radius: 18px;
    }
    .lk-field-grid.lk-field-grid-2 {
        grid-template-columns: 1fr;
    }
    .lk-powered-bottom {
        margin-top: 14px;
        font-size: 10px;
    }
}
