﻿#tarteaucitronRoot .tarteaucitronAlertBig {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100% !important;
    background-color: #1e1e1e !important;
    color: #ffffff !important;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.3) !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    z-index: 9999 !important;
 
}

    /* 2) Mesaj metni – sol tarafta */
    #tarteaucitronRoot .tarteaucitronAlertBig p,
    #tarteaucitronRoot .tarteaucitronAlertBig .tarteaucitronAlert {
        flex: 1 1 60% !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* 3) Linkler (“Gizlilik Bildirimi” vb.) */
    #tarteaucitronRoot .tarteaucitronAlertBig a {
        color: #ffffff !important;
        text-decoration: underline !important;
    }

    /* 4) Buton grubu – sağ tarafta */
    #tarteaucitronRoot .tarteaucitronAlertBig .tarteaucitronCTA {
        display: flex !important;
        gap: 0.75rem !important;
        flex: 1 1 35% !important;
        justify-content: flex-end !important;
        padding-right: 80px;
    }

        /* 5) Buton stili – beyaz kenarlıklı, şeffaf dolgu */
        #tarteaucitronRoot .tarteaucitronAlertBig .tarteaucitronCTA button {
            background: transparent !important;
            border: 1px solid #ffffff !important;
            color: #ffffff !important;
            padding: 0.5rem 1.25rem !important;
            font-size: 0.9rem !important;
            border-radius: 4px !important;
            cursor: pointer !important;
            transition: background 0.2s ease !important;
        }

            /* 6) Hover efekti */
            #tarteaucitronRoot .tarteaucitronAlertBig .tarteaucitronCTA button:hover {
                background: rgba(255,255,255,0.1) !important;
            }

        /* 7) “Ayarları Yönet” linkini buton gibi değil metin linki gibi göstermek için */
        #tarteaucitronRoot .tarteaucitronAlertBig .tarteaucitronCTA a {
            background: none !important;
            border: none !important;
            color: #ffffff !important;
            padding: 0 !important;
            line-height: 1 !important;
            text-decoration: underline !important;
            font-size: 0.9rem !important;
        }


/* Küçük banner’ı tamamen gizle */
#tarteaucitronSmall,
.tarteaucitronAlertSmall {
    display: none !important;
}