/* Simple File Downloader Styles */
.sfd-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sfd-search {
    margin-bottom: 20px;
}

.sfd-search input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.sfd-search input:focus {
    outline: none;
    border-color: #0073aa;
}

.sfd-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.sfd-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eef2f6;
    transition: background 0.3s;
}

.sfd-item:hover {
    background: #f8fafc;
}

.sfd-icon {
    font-size: 36px;
    margin-right: 15px;
    min-width: 50px;
    text-align: center;
}

.sfd-info {
    flex: 1;
}

.sfd-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
    word-break: break-word;
}

.sfd-meta {
    font-size: 12px;
    color: #64748b;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sfd-action {
    margin-left: 15px;
}

.sfd-download-btn {
    background: #0073aa;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.sfd-download-btn:hover {
    background: #005a87;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .sfd-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sfd-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .sfd-action {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .sfd-meta {
        justify-content: center;
    }
}