/* Auto-extracted from resources/views/downloads/index.blade.php */

.downloads-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .download-item {
        padding: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .download-item-top {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 18px;
    }

    .download-item-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        background: #f0f7ff;
        color: #2971b7;
    }

    .download-item-icon.pdf {
        background: #fdf0f0;
        color: #e74c3c;
    }

    .download-item-icon.doc,
    .download-item-icon.docx {
        background: #eaf2f8;
        color: #2980b9;
    }

    .download-item-icon.xls,
    .download-item-icon.xlsx {
        background: #eafaf1;
        color: #27ae60;
    }

    .download-item-body {
        flex: 1;
        min-width: 0;
    }

    .download-item-category {
        display: inline-block;
        padding: 4px 12px;
        background: #e0f2fe;
        color: #0c4a6e;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-bottom: 10px;
    }

    .download-item-title {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 8px;
        line-height: 1.4;
        word-break: break-word;
    }

    .download-item-desc {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
        margin: 0 0 12px;
    }

    .download-item-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 13px;
        color: #64748b;
    }

    .download-item-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .download-item-footer {
        padding-top: 18px;
        border-top: 1px solid #e5e7eb;
    }

    .download-item-footer .action-button {
        width: 100%;
        min-height: 46px;
        font-size: 15px;
    }

    .downloads-empty {
        text-align: center;
        padding: 70px 24px;
    }

    .downloads-empty i {
        font-size: 48px;
        color: #cbd5e1;
        margin-bottom: 16px;
    }
