/* ============================================================
   Orsiad Dosya Görüntüleyici — Stil Dosyası
   ============================================================ */

/* Ana kapsayıcı */
.orsiad-dosya-wrap {
    margin: 25px 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

/* Başlık alanı */
.orsiad-dosya-baslik {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* Dosya tipi rozeti (PDF / PPTX) */
.orsiad-dosya-tip-rozeti {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.orsiad-dosya-tip-pdf {
    background: #e64946;
    color: #fff;
}

.orsiad-dosya-tip-pptx,
.orsiad-dosya-tip-ppt {
    background: #d14524;
    color: #fff;
}

/* iframe görüntüleyici alanı */
.orsiad-dosya-viewer {
    width: 100%;
    background: #f5f5f5;
    position: relative;
}

.orsiad-dosya-viewer iframe {
    display: block;
    width: 100%;
    border: none;
    background: #fff;
}

/* Google Docs notu */
.orsiad-dosya-gdocs-not {
    margin: 0;
    padding: 6px 16px;
    font-size: 12px;
    color: #888;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: center;
    font-style: italic;
}

/* Alt footer alanı (indirme butonu) */
.orsiad-dosya-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 16px;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

/* İndirme butonu */
.orsiad-dosya-indir-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #e64946;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.orsiad-dosya-indir-btn:hover,
.orsiad-dosya-indir-btn:focus {
    background: #c93835;
    color: #ffffff !important;
    text-decoration: none !important;
}

.orsiad-dosya-indir-ikon {
    font-size: 16px;
    line-height: 1;
    font-style: normal;
}

/* Hata / uyarı mesajları */
.orsiad-dosya-hata,
.orsiad-dosya-bilinmiyor {
    margin: 15px 0;
    padding: 12px 16px;
    background: #fff3cd;
    border-left: 4px solid #e64946;
    color: #555;
    font-size: 13px;
    border-radius: 3px;
}

.orsiad-dosya-hata code {
    background: #ffe0e0;
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 12px;
}

/* ============================================================
   Responsive — Mobil uyum
   ============================================================ */
@media screen and (max-width: 600px) {
    .orsiad-dosya-baslik {
        font-size: 13px;
        padding: 10px 12px;
    }

    .orsiad-dosya-viewer iframe {
        min-height: 350px;
    }

    .orsiad-dosya-footer {
        justify-content: center;
        padding: 10px 12px;
    }

    .orsiad-dosya-indir-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 10px;
    }
}
