/* Ana Kapsayıcı */
.biyo-download-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: box-shadow 0.3s ease-in-out;
}

.biyo-download-wrapper:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* İkon Bölümü */
.biyo-download-icon {
    flex-shrink: 0;
    margin-right: 16px;
    color: #0073aa;
    /* WordPress Mavi */
}

/* Bilgi Bölümü (Başlık ve Açıklama) */
.biyo-download-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.biyo-download-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 4px;
}

.biyo-download-description {
    font-size: 14px;
    color: #50575e;
}

.biyo-file-size {
    font-style: italic;
    margin-left: 5px;
}

/* Eylem Bölümü (Buton) */
.biyo-download-action {
    flex-shrink: 0;
    margin-left: 16px;
}

.biyo-download-button {
    display: inline-block;
    background-color: #0073aa;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.biyo-download-button:hover {
    background-color: #005a87;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hata Mesajı Stili */
.biyo-download-error {
    color: #d63638;
    font-weight: bold;
    padding: 10px 15px;
    background-color: #fbeaea;
    border: 1px solid #d63638;
    border-radius: 5px;
    margin: 20px 0;
}

/* Mobil Cihazlar için Uyumluluk */
@media (max-width: 600px) {
    .biyo-download-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .biyo-download-icon {
        align-self: center;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .biyo-download-info {
        align-items: center;
        margin-bottom: 16px;
    }

    .biyo-download-action {
        margin-left: 0;
        width: 100%;
    }

    .biyo-download-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        /* padding'in genişliği etkilememesi için */
    }
}