/* === Általános beállítások === */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

/* === Kapott kattintások és statisztika keret === */
.cx-click-stats {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin: 30px auto;
    max-width: 800px;
    transition: all 0.3s ease;
}

.cx-click-stats:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cx-click-stats h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    color: #222;
}

.cx-click-stats h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff5722;
    margin: 12px auto 0;
    border-radius: 3px;
}

/* === Lista elemek – kattintók === */
.cx-click-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cx-click-stats li {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 2px 2px 8px #eee;
    transition: transform 0.2s ease;
}

.cx-click-stats li:hover {
    transform: scale(1.01);
}

/* === Elem tartalom elrendezés === */
.cx-click-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.cx-click-row .name {
    font-weight: bold;
    color: #004a99;
    min-width: 120px;
}

.cx-click-row .trust {
    font-size: 13px;
    color: #666;
}

.cx-click-row .status {
    color: #2ecc71;
    font-weight: 500;
}

.cx-click-row .pending {
    color: #e67e22;
    font-weight: 500;
}

/* === CTA gombok === */
.cx-click-stats .button {
    background: #ff5722;
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cx-click-stats .button:hover {
    background: #e64a19;
    transform: scale(1.05);
}

/* === Link lista - új ajánlott linkek === */
.cx-user-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    gap: 10px;
    font-size: 15px;
}

.cx-user-row .cx-col {
    flex: 1 1 auto;
    min-width: 120px;
}

.cx-user-row .cx-col.name a {
    font-weight: bold;
    color: #0055aa;
    text-decoration: none;
}

.cx-user-row .cx-col.name a:hover {
    text-decoration: underline;
}

.cx-user-row .cx-col.link a {
    background: #2ecc71;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.cx-user-row .cx-col.link .pending {
    color: #e67e22;
    font-weight: 500;
}

.cx-user-row .cx-col.trust {
    color: #777;
    font-size: 13px;
}

/* === Szűk layout, mobilbarát === */
@media (max-width: 768px) {
    .cx-user-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cx-user-row .cx-col {
        min-width: 100%;
    }

    .cx-click-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cx-click-stats h3 {
        font-size: 22px;
    }
}
/* === Checkout Google Review link mező === */
.woocommerce-additional-fields .form-row input.input-text {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.05);
}

.woocommerce-additional-fields h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.woocommerce-additional-fields p {
    font-size: 14px;
    color: #666;
}
.cx-country-label {
    font-size: 14px;
    color: #666;
    margin-top: 25px;
    margin-bottom: 8px;
    padding-left: 10px;
    font-weight: bold;
}

.cx-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.cx-col.name a {
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.cx-col.name a:hover {
    text-decoration: underline;
}

.cx-col.link a {
    color: #006699;
    font-size: 14px;
}

.cx-col.trust {
    font-size: 13px;
    color: #777;
}
/* === Google értékelés mező a checkoutnál === */
.cx-google-section {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #e2e2e2;
    background: #f9f9f9;
    border-radius: 8px;
}

.cx-google-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.cx-google-link-field input.input-text {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    transition: border-color 0.3s;
}

.cx-google-link-field input.input-text:focus {
    border-color: #0073aa;
    outline: none;
}

.cx-google-hint {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.cx-google-help-link {
    color: #0073aa;
    text-decoration: underline;
}

.cx-google-help-link:hover {
    color: #005177;
}
.cx-edit-google {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    font-family: 'Roboto', sans-serif;
}

.cx-edit-google h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.cx-divider {
    border: 0;
    height: 3px;
    width: 60px;
    background: #ff5722;
    margin: 0 auto 30px;
    border-radius: 3px;
}

.cx-edit-google label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 18px;
    color: #444;
}

.cx-edit-google .cx-icon {
    margin-right: 6px;
}
