/* 1. Kapsayıcıyı zorla sola yasla */
div.eape-item-component {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 20px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
}

/* 2. 'a' etiketini sola yasla - ÖNEMLİ KISIM BURASI */
a.eape-item-blockLink {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important; /* Artık burası center değil, left! */
    align-items: center !important;
    text-align: left !important;
    flex: 1 1 auto !important;
}

/* 3. İkon ve Metni içeren alan */
div.eape-item-iconContainer {
    flex: 0 0 42px !important;
    margin-right: 14px !important;
}

div.eape-item-wrapper {
    flex: 1 1 auto !important;
    text-align: left !important;
}

/* 4. Butonun sağa yapışmasını garantile */
div.eape-item-linkWrapper {
    margin-left: auto !important; /* Butonu iten asıl güç */
    flex: 0 0 auto !important;
}

/* 5. Metin hizalamasını kesinleştir */
.eape-item-name {
    text-align: left !important;
    display: block !important;
    width: 100% !important;
}

/* İndir butonu stilini düzenleyelim */
.eape-item-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important; /* JS ile de set etmiştik */
    background: #2563eb !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 0 !important; /* İçindeki metni gizler */
}

/* Butonun içine SVG indirme ikonu ekleme */
.eape-item-link::after {
    content: "" !important;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}

/* Hover efekti */
.eape-item-link:hover {
    background: #1d4ed8 !important;
}