/* ============================================
   Download Page — Specific Styles
   ============================================ */

.download-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1100px;
    margin: 40px auto;
}

.download-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.download-icon {
    font-size: 2.5rem;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.download-info {
    flex: 1;
}

.download-title {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.download-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-tag {
    background: #ebf5ff;
    color: #007bff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.meta-item {
    font-size: 0.95rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #999;
}

.download-actions {
    margin-left: 30px;
}

.btn-download {
    background: #17a2b8; /* Teal color similar to image */
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.btn-download:hover {
    background: #138496;
    color: white;
    transform: scale(1.05);
}

.btn-download::after {
    margin-left: 10px;
}

.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 25px;
}

@media (max-width: 768px) {
    .download-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }

    .download-icon {
        margin-bottom: 15px;
    }

    .download-actions {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}
