/* translate.css */

/* Sağ kenarda, dikeyde ortalı toggle */
#translate-toggle {
    position: fixed;
    top: 65%;
    right: 16px;                 /* kenardan boşluk */
    transform: translateY(-50%); /* dikey ortalama */
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 27px;           /* içeriği tam ortala */
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Toggle’un solunda, aynı hizada çeviri kutusu */
#google_translate_element {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);                 /* dikey ortalama */
    right: calc(16px + 27px + 10px);             /* toggle genişliği + aralık */
    z-index: 9999;
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    font-size: 12px;
}

