[data-scraper="scraper_banner"] .tweet {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scrape-post {
    width: 100%;
    max-width: 400px;
    background-color: white;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.scrape-header {
    display: flex;
    align-items: center;
    padding: 10px;
}
.scrape-image {
    max-height: 285px;
    display: flex;
    align-content: center;
    justify-content: center;
    position: relative;
}
.scrape-image img {
    width: auto;
    height: 282px;
    display: block;
    top: 0;
    position: relative;
}
.scrape-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.scrape-user-info {
    display: flex;
    flex-direction: column;
}

.scrape-username {
    font-weight: bold;
    font-size: 14px;
}

.scrape-time {
    font-size: 12px;
    color: #8e8e8e;
}

.scrape-stats {
    padding: 10px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    gap: 15px;
}
.scrape-stats i {
    font-size: 20px;
    position: relative;
    top: 3px;
}

.scrape-tweet {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    width: 100%;
    max-width: 550px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    opacity: .8;
}
.scrape-tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.scrape-tweet-header img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-right: 12px;
}
.scrape-tweet-header .scrape-user-info {
    display: flex;
    flex-direction: column;
}
.scrape-user-info .scrape-name {
    font-weight: bold;
}
.scrape-user-info .scrape-handle {
    color: #657786;
}
.scrape-tweet-content {
    font-size: 15px;
    margin-bottom: 12px;
}
.scrape-tweet-footer {
    display: flex;
    justify-content: space-between;
    color: #657786;
}
.scrape-tweet-footer .scrape-icons {
    display: flex;
    align-items: center;
}
.scrape-tweet-footer .scrape-icon {
    margin-right: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.none_verified {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.scrape-tweet-footer .scrape-icon span {
    font-size: 13px;
}
.scrape-tweet-footer .scrape-icon i {
    color: #657786;
}
.vote-select 
{
    display: none;
}
#free-captcha {
    /* Başlangıçta gizli olmalı, JS ile gösterilecek */
    display: none; 
    
    /* Ortalamak için: Kapsayıcıyı tam ekran yapın veya istediğiniz boyutta tutun */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Hafif bir arka plan karartması (isteğe bağlı, daha profesyonel görünür) */
    background-color: rgba(0, 0, 0, 0.7); 
    
    /* Flexbox ile içindeki elemanı (captcha--area) ortalama */
    display: flex;
    justify-content: center; /* Yatayda ortala */
    align-items: center;     /* Dikeyde ortala */
    z-index: 10000; /* Diğer her şeyin üstünde görünmesi için yüksek bir değer */
}
.captcha--area {
    padding: 20px;
    background: #25252d; /* Koyu tema renginiz */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* İçindeki Turnstile'ın boyutuna otomatik uyum sağlayacaktır */
}