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

.files-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.file-list {
    list-style: none;
    padding: 0;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #fff;
}

.file-item:hover {
    background: #f9f9f9;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 8px;
    color: #28a745;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    color: #666;
    font-size: 12px;
}

.file-actions {
    display: flex;
    gap: 10px;
}

.download-btn,
.delete-btn {
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.download-btn {
    background: #007a55;
    color: white;
}

.download-btn:hover {
    background: #28a745;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    cursor: pointer;
}

.delete-btn:hover {
    background: #c82333;
}

.empty-folder {
    text-align: center;
    color: #666;
    padding: 40px;
}

.empty-folder-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}