.download-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.download-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.file-url {
    color: #6c757d;
    font-size: 0.9em;
    word-break: break-all;
}

.download-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    background: #0056b3;
}