.vc-ai-summary-bar {
    max-width: 1200px;
    margin: 0 auto 18px auto;
    padding: 0 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}

/* 248x48, hafif oval buton (desktop için) */
.ai-check-butto {
    width: 248px;
    height: 48px;
    padding: 0 16px;
    box-sizing: border-box;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: var(--dark-wcolor, var(--dark-color));
    font-size: 16px;
    font-weight: 500;
    background: var(--dark-input-text, var(--bg));
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.ai-check-butto-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ai-check-butto-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.ai-check-butto-text {
    line-height: 1;
}

/* ChatGPT butonu */
.ai-check-butto--chatgpt {
    border-color: rgba(16, 163, 127, 0.35);
}

.ai-check-butto--chatgpt:hover {
    background: rgba(16, 163, 127, 0.06);
    box-shadow: 0 6px 16px rgba(16, 163, 127, 0.18);
    transform: translateY(-1px);
}

/* Gemini butonu */
.ai-check-butto--gemini {
    border-color: rgba(66, 133, 244, 0.35);
}

.ai-check-butto--gemini:hover {
    background: rgba(66, 133, 244, 0.06);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.18);
    transform: translateY(-1px);
}

/* Mobil: butonlar yan yana 2 kolon */
@media (max-width: 576px) {
    .vc-ai-summary-bar {
        padding: 0 8px;
        gap: 8px;
        justify-content: space-between;
    }

    .vc-ai-summary-bar .ai-check-butto {
        width: calc(50% - 4px);   /* iki buton yan yana */
        font-size: 14px;          /* biraz küçült, taşmasın */
        padding: 0 10px;
    }
}
ß